diff --git a/word-prediction-kb-bert/.bumpversion.toml b/word-prediction-kb-bert/.bumpversion.toml index f7f8ddd..7f5e426 100644 --- a/word-prediction-kb-bert/.bumpversion.toml +++ b/word-prediction-kb-bert/.bumpversion.toml @@ -1,5 +1,5 @@ [tool.bumpversion] -current_version = "0.5.4" +current_version = "0.6.0" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" serialize = ["{major}.{minor}.{patch}"] tag = true diff --git a/word-prediction-kb-bert/CHANGELOG.md b/word-prediction-kb-bert/CHANGELOG.md index 8b9ae55..32dfcd9 100644 --- a/word-prediction-kb-bert/CHANGELOG.md +++ b/word-prediction-kb-bert/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. -## [unreleased] +## [0.6.0] - 2024-06-14 ### 🚀 Features diff --git a/word-prediction-kb-bert/pyproject.toml b/word-prediction-kb-bert/pyproject.toml index c83eb76..69da96d 100644 --- a/word-prediction-kb-bert/pyproject.toml +++ b/word-prediction-kb-bert/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "sparv-sbx-word-prediction-kb-bert" -version = "0.5.4" +version = "0.6.0" description = "A sparv plugin for computing word neighbours using a BERT model." authors = [ { name = "Kristoffer Andersson", email = "kristoffer.andersson@gu.se" }, diff --git a/word-prediction-kb-bert/src/sbx_word_prediction_kb_bert/__init__.py b/word-prediction-kb-bert/src/sbx_word_prediction_kb_bert/__init__.py index 9a9f080..564fd37 100644 --- a/word-prediction-kb-bert/src/sbx_word_prediction_kb_bert/__init__.py +++ b/word-prediction-kb-bert/src/sbx_word_prediction_kb_bert/__init__.py @@ -20,4 +20,4 @@ ), ] -__version__ = "0.5.4" +__version__ = "0.6.0"