diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f13f0b..018ea97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.7.4](https://github.com/coder/balatrobot/compare/v0.7.3...v0.7.4) (2025-10-28) + + +### Bug Fixes + +* add timeout to socket.recv ([12d086a](https://github.com/coder/balatrobot/commit/12d086a80294f08fe449012c2a3a27708d7aada0)) + ## [0.7.3](https://github.com/coder/balatrobot/compare/v0.7.2...v0.7.3) (2025-10-25) diff --git a/pyproject.toml b/pyproject.toml index d71250f..ef09a6b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "balatrobot" -version = "0.7.3" +version = "0.7.4" description = "A framework for Balatro bot development" readme = "README.md" authors = [ diff --git a/src/balatrobot/__init__.py b/src/balatrobot/__init__.py index a06c332..c51fd06 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.3" +__version__ = "0.7.4" __all__ = [ # Main client "BalatroClient",