Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/.release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.1.1"
".": "1.2.0"
}
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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" }]
Expand Down
2 changes: 1 addition & 1 deletion src/balatrollm/__init__.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down