Skip to content

Commit 19a56eb

Browse files
committed
Release v2.2.1
1 parent 45c172f commit 19a56eb

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

Changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77

88
## v2.2.1
99

10+
_2023-06-09 20:31_
11+
1012
- Updated readme for new command-line arguments
1113

1214
## v2.2.0

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ line_length = 79
99

1010
[tool.poetry]
1111
name = "alicechess"
12-
version = "2.2.0"
12+
version = "2.2.1"
1313
description = "A Python package to play Alice Chess"
1414
authors = ["Joseph Lou <joseph.d.lou@gmail.com>"]
1515
license = "MIT License"

src/alicechess/__version__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
Version for `alicechess` package.
33
"""
44

5-
__version__ = "2.2.0"
5+
version_tuple = (2, 2, 1)
6+
__version__ = ".".join(map(str, version_tuple))

0 commit comments

Comments
 (0)