diff --git a/CHANGELOG.md b/CHANGELOG.md index 32b4726a..49b2cc9c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.5.1](https://github.com/coder/balatrobot/compare/v1.5.0...v1.5.1) (2026-06-09) + + +### Bug Fixes + +* **linux:** respect pre-existing STEAM_COMPAT_DATA_PATH and STEAM_COMPAT_CLIENT_INSTALL_PATH env vars ([ef75d31](https://github.com/coder/balatrobot/commit/ef75d3117c9a57363b79a98066b67509a8070bc1)) + ## [1.5.0](https://github.com/coder/balatrobot/compare/v1.4.1...v1.5.0) (2026-05-27) diff --git a/pyproject.toml b/pyproject.toml index 70d958fa..bf163a71 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "balatrobot" -version = "1.5.0" +version = "1.5.1" description = "API for developing Balatro bots" readme = "README.md" authors = [ diff --git a/src/balatrobot/__init__.py b/src/balatrobot/__init__.py index e6a77473..7aee6f3c 100644 --- a/src/balatrobot/__init__.py +++ b/src/balatrobot/__init__.py @@ -4,5 +4,5 @@ from balatrobot.config import Config from balatrobot.manager import BalatroInstance -__version__ = "1.5.0" +__version__ = "1.5.1" __all__ = ["APIError", "BalatroClient", "BalatroInstance", "Config", "__version__"]