diff --git a/CHANGELOG.md b/CHANGELOG.md index cdf26e2..938ab44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.3.5 (2024-02-09) +### Fix +* Add imports required for ladder ([`e425929`](https://github.com/AresSC2/cython-extensions-sc2/commit/e4259290b3e54a4f0f3e43f5c5dd982d199dc5e1)) + ## v0.3.4 (2024-02-08) ### Fix * Correct imports ([`3912ed1`](https://github.com/AresSC2/cython-extensions-sc2/commit/3912ed156ff7ea65601bf0536208d307ea05d1cc)) diff --git a/cython_extensions/__init__.py b/cython_extensions/__init__.py index 5ed5c41..b1f4395 100644 --- a/cython_extensions/__init__.py +++ b/cython_extensions/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.3.4" +__version__ = "0.3.5" # bootstrap is the only module which # can be loaded with default Python-machinery diff --git a/pyproject.toml b/pyproject.toml index 7fef65c..d35d8f2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cython-extensions-sc2" -version = "0.3.4" +version = "0.3.5" description = "" authors = ["Tom Kerr "] readme = "README.md"