diff --git a/CHANGELOG.md b/CHANGELOG.md index 38f6dc9..c80a9cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # CHANGELOG +## v0.1.3 (2025-01-25) + +### Bug Fixes + +- Get correct version in pyproject + ([`b48786d`](https://github.com/DVDAGames/pgn-tokenizer/commit/b48786dc8be6534f43f2b5930c8aa1e317c4803d)) + + ## v0.1.2 (2025-01-25) ### Bug Fixes diff --git a/pyproject.toml b/pyproject.toml index ea92ada..cc22f18 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pgn-tokenizer" -version = "0.1.2" +version = "0.1.3" description = "A byte pair encoding tokenizer for chess portable game notation (PGN)" readme = "README.md" license = "MIT" diff --git a/src/pgn_tokenizer/__init__.py b/src/pgn_tokenizer/__init__.py index 25e829b..a2b0826 100644 --- a/src/pgn_tokenizer/__init__.py +++ b/src/pgn_tokenizer/__init__.py @@ -10,7 +10,7 @@ from pgn_tokenizer.constants import DATASET_NAME # noqa: E402 -__version__ = "0.1.2" +__version__ = "0.1.3" base_path = Path(__file__).parent