diff --git a/Changelog.md b/Changelog.md index ae9e199..a5795d3 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,8 @@ ## v2.2.0 +_2023-06-09 14:22_ + - Added command-line parsing to allow launching a game between builtin players - Added threefold repetition rule - Tweaked castling and en passant abilities diff --git a/pyproject.toml b/pyproject.toml index 0dd1c22..5e223b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ line_length = 79 [tool.poetry] name = "alicechess" -version = "2.1.0" +version = "2.2.0" description = "A Python package to play Alice Chess" authors = ["Joseph Lou "] license = "MIT License" diff --git a/src/alicechess/__version__.py b/src/alicechess/__version__.py index f819130..9a6f1aa 100644 --- a/src/alicechess/__version__.py +++ b/src/alicechess/__version__.py @@ -2,4 +2,4 @@ Version for `alicechess` package. """ -__version__ = "2.1.0" +__version__ = "2.2.0"