diff --git a/CHANGELOG.md b/CHANGELOG.md index 018ea97..0d4c0c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.7.5](https://github.com/coder/balatrobot/compare/v0.7.4...v0.7.5) (2025-10-30) + + +### Bug Fixes + +* prevent memory leaks generating UI descriptions ([e8d62e1](https://github.com/coder/balatrobot/commit/e8d62e1146fd156e44b1af4d124270bbda5b2c16)) + ## [0.7.4](https://github.com/coder/balatrobot/compare/v0.7.3...v0.7.4) (2025-10-28) diff --git a/pyproject.toml b/pyproject.toml index ef09a6b..8e2d84f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "balatrobot" -version = "0.7.4" +version = "0.7.5" description = "A framework for Balatro bot development" readme = "README.md" authors = [ diff --git a/src/balatrobot/__init__.py b/src/balatrobot/__init__.py index c51fd06..090b078 100644 --- a/src/balatrobot/__init__.py +++ b/src/balatrobot/__init__.py @@ -5,7 +5,7 @@ from .exceptions import BalatroError from .models import G -__version__ = "0.7.4" +__version__ = "0.7.5" __all__ = [ # Main client "BalatroClient",