diff --git a/CHANGELOG.md b/CHANGELOG.md index e574aa9..4ee37c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.7.2](https://github.com/coder/balatrobot/compare/v0.7.1...v0.7.2) (2025-10-24) + + +### Bug Fixes + +* increase TCP socket timeout from 60s to 300s ([de3ba54](https://github.com/coder/balatrobot/commit/de3ba54656e1a378cb7e93dc1a6798e0eb946ed6)) + ## [0.7.1](https://github.com/coder/balatrobot/compare/v0.7.0...v0.7.1) (2025-10-23) diff --git a/pyproject.toml b/pyproject.toml index f8903f6..da34c31 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "balatrobot" -version = "0.7.1" +version = "0.7.2" description = "A framework for Balatro bot development" readme = "README.md" authors = [ diff --git a/src/balatrobot/__init__.py b/src/balatrobot/__init__.py index 0915e6f..89db131 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.1" +__version__ = "0.7.2" __all__ = [ # Main client "BalatroClient",