Skip to content

Commit

Permalink
Bump version: 0.2.0 → 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kod-kristoff committed Jan 11, 2024
1 parent 338d105 commit 40c1da0
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.0
current_version = 0.2.1
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-bert-neighbour-plugin"
version = "0.2.0"
version = "0.2.1"
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/sparv_bert_neighbour/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
),
]

__version__ = "0.2.0"
__version__ = "0.2.1"

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 sparv_bert_neighbour.__version__ == "0.2.0"
assert sparv_bert_neighbour.__version__ == "0.2.1"

0 comments on commit 40c1da0

Please sign in to comment.