From 850c8d00a693287d19ea58375ec833d6803f379b Mon Sep 17 00:00:00 2001 From: S1M0N38 Date: Wed, 18 Feb 2026 15:56:03 +0100 Subject: [PATCH] chore(main): release 1.2.0 --- .github/.release-please-manifest.json | 2 +- CHANGELOG.md | 19 +++++++++++++++++++ pyproject.toml | 2 +- src/balatrollm/__init__.py | 2 +- 4 files changed, 22 insertions(+), 3 deletions(-) diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json index c4ddc74..c3f1463 100644 --- a/.github/.release-please-manifest.json +++ b/.github/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.1.1" + ".": "1.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 42c47fa..d3b4299 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [1.2.0](https://github.com/coder/balatrollm/compare/v1.1.1...v1.2.0) (2026-02-18) + + +### Features + +* **bot:** add finish reason tracking and separate error/failed counters ([5b0d95c](https://github.com/coder/balatrollm/commit/5b0d95c43bb2e1feb84d8222e728b1821f77e272)) +* **views:** add current/previous/best run display and status indicators ([1d54796](https://github.com/coder/balatrollm/commit/1d54796b5d438d098ca684cb49d27b62b270aeb2)) + + +### Bug Fixes + +* **llm:** guard against empty/None choices ([01f18c6](https://github.com/coder/balatrollm/commit/01f18c6fd3d0d83e6971350463f970dee51a3d20)) + + +### Documentation + +* **config:** add community config example ([a245a0c](https://github.com/coder/balatrollm/commit/a245a0c2b960b91262cc16581e6ef509930f1d77)) +* update commit command with workflow and scope definitions ([20282ff](https://github.com/coder/balatrollm/commit/20282ffcd867d8dcca4f04193f1b58d311f19426)) + ## [1.1.1](https://github.com/coder/balatrollm/compare/v1.1.0...v1.1.1) (2026-02-12) diff --git a/pyproject.toml b/pyproject.toml index 33ef59f..d6486bf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "balatrollm" -version = "1.1.1" +version = "1.2.0" description = "LLM-powered bot that plays Balatro using strategic decision making" readme = "README.md" authors = [{ name = "S1M0N38", email = "bertolottosimone@gmail.com" }] diff --git a/src/balatrollm/__init__.py b/src/balatrollm/__init__.py index f72ceb3..5f5f668 100644 --- a/src/balatrollm/__init__.py +++ b/src/balatrollm/__init__.py @@ -1,6 +1,6 @@ """BalatroLLM - LLM-powered Balatro bot.""" -__version__ = "1.1.1" +__version__ = "1.2.0" from .bot import Bot, BotError from .client import BalatroClient, BalatroError