diff --git a/CHANGELOG.md b/CHANGELOG.md index 1febb1d..f25bd4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v2.20.1 (2024-07-22) + +### Fix + +* Allow building logic to be reached ([`4801734`](https://github.com/AresSC2/ares-sc2/commit/48017346ee71930414f217cafe22fd1c1f4b8368)) + ## v2.20.0 (2024-07-22) ### Feature diff --git a/pyproject.toml b/pyproject.toml index 32c238f..6c0becc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ares-sc2" -version = "2.20.0" +version = "2.20.1" description = "" authors = ["Tom Kerr , Paul "] readme = "README.md" diff --git a/src/ares/__init__.py b/src/ares/__init__.py index aaad036..6fe3800 100644 --- a/src/ares/__init__.py +++ b/src/ares/__init__.py @@ -1,3 +1,3 @@ -__version__ = "2.20.0" +__version__ = "2.20.1" from .main import * # noqa: F403 F401