diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ec2ccc..1428be0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v2.33.2 (2025-02-05) + +### Fix + +* Ensure position exists before updating building tracker ([`c70870d`](https://github.com/AresSC2/ares-sc2/commit/c70870d31af7d7ebf712f9c88ab11ab3570bc515)) + ## v2.33.1 (2025-01-31) ### Fix diff --git a/pyproject.toml b/pyproject.toml index be8547b..12d8018 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ares-sc2" -version = "2.33.1" +version = "2.33.2" description = "" authors = ["Tom Kerr , Paul "] readme = "README.md" diff --git a/src/ares/__init__.py b/src/ares/__init__.py index cc940c9..9140743 100644 --- a/src/ares/__init__.py +++ b/src/ares/__init__.py @@ -1,3 +1,3 @@ -__version__ = "2.33.1" +__version__ = "2.33.2" from .main import * # noqa: F403 F401