Skip to content

Commit

Permalink
Bump version: 0.2.1 → 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kod-kristoff committed Feb 23, 2024
1 parent 3ab4d79 commit db7d55f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.1
current_version = 0.3.0
commit = True
tag = True
allow_dirty = False
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "sparv-word-prediction-plugin"
version = "0.2.1"
version = "0.3.0"
description = "A sparv plugin for computing word neighbours using a BERT model."
authors = [
{ name = "Kristoffer Andersson", email = "[email protected]" },
Expand Down
2 changes: 1 addition & 1 deletion src/word_prediction/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
),
]

__version__ = "0.2.1"
__version__ = "0.3.0"

logger = get_logger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion tests/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version() -> None:
assert word_prediction.__version__ == "0.2.1"
assert word_prediction.__version__ == "0.3.0"

0 comments on commit db7d55f

Please sign in to comment.