Skip to content

Commit

Permalink
Release v2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
josephlou5 committed Sep 3, 2023
1 parent 8283488 commit 63d077f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
13 changes: 12 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# Changelog

## v2.4.0
## v2.5.0

_2023-09-03 15:35_

- Cached move calculation for repeating board states
- Set required Python version to Python 3.11
- The code uses `typing.Self`, which was introduced in Python 3.11. For type
hint reasons, we will not remove it, and so the minimum required version
will have to be Python 3.11.
- Since this change broke v2.4.0, it has been yanked.

## v2.4.0 (yanked)

_2023-09-03 15:13_

Expand Down
7 changes: 2 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ line_length = 79

[tool.poetry]
name = "alicechess"
version = "2.4.0"
version = "2.5.0"
description = "A Python package to play Alice Chess"
authors = ["Joseph Lou <[email protected]>"]
license = "MIT License"
Expand All @@ -18,9 +18,6 @@ homepage = "https://github.com/josephlou5/alicechess"
repository = "https://github.com/josephlou5/alicechess"
classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Topic :: Games/Entertainment :: Board Games",
"Topic :: Software Development :: Libraries :: Python Modules",
Expand All @@ -29,7 +26,7 @@ classifiers = [
packages = [{include = "alicechess", from = "src"}]

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.11"
Pillow = "^9.5.0"

[tool.poetry.group.dev.dependencies]
Expand Down
1 change: 1 addition & 0 deletions src/alicechess/game_state.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
GameState class.
"""
# pylint: disable=too-many-lines

# =============================================================================

Expand Down

0 comments on commit 63d077f

Please sign in to comment.