Skip to content

Commit c1f17f1

Browse files
committed
chore(main): release 1.5.0
1 parent 443ad5c commit c1f17f1

5 files changed

Lines changed: 33 additions & 4 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.4.0"
2+
".": "1.5.0"
33
}

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11
# Changelog
22

3+
## [1.5.0](https://github.com/coder/balatrobench/compare/v1.4.0...v1.5.0) (2026-02-05)
4+
5+
6+
### Features
7+
8+
* **balatrobench:** update strategies to match model format ([bdc9551](https://github.com/coder/balatrobench/commit/bdc955195184dd532ad5c2f8b564253203fc1802))
9+
* **site:** add balatolive logo to assets ([3ff5183](https://github.com/coder/balatrobench/commit/3ff518356f0f69f0bb5f73a012ecfabe7f9e13ee))
10+
* **site:** add balatrodocs logo to assets ([9757092](https://github.com/coder/balatrobench/commit/9757092a646dce43e906c9b2ca5471e432707054))
11+
* **site:** add improved tooltips ([443ad5c](https://github.com/coder/balatrobench/commit/443ad5cb14e8fa472e5441868e265456477d3004)), closes [#20](https://github.com/coder/balatrobench/issues/20)
12+
* **site:** add quotes to site/assets ([4e2256b](https://github.com/coder/balatrobench/commit/4e2256b1c375324cb9076bdc2b847c191285824c))
13+
* **site:** add random quotes extracted from reasoning traces ([e1ad005](https://github.com/coder/balatrobench/commit/e1ad005c15c53932c8149c55fb34c0b00f0aa0f1))
14+
* **site:** add tooltips to the table headers ([f7a992e](https://github.com/coder/balatrobench/commit/f7a992e7bcfd404313089a1c67b29621e01d385c))
15+
* **site:** redesign of the site improving UI/UX ([2b9a98f](https://github.com/coder/balatrobench/commit/2b9a98f17170919ec825ce47625c4a164ebf65d6)), closes [#19](https://github.com/coder/balatrobench/issues/19)
16+
* **site:** use openai/gpt-oss-20b model for community leaderboard ([a022722](https://github.com/coder/balatrobench/commit/a0227225be5e74d214293b4d0e83970d577041a8))
17+
* **upload:** add subdirectory option to upload.py ([8076cfb](https://github.com/coder/balatrobench/commit/8076cfb6c213b2ed808b3c6a91e4e27b1e277387))
18+
19+
20+
### Bug Fixes
21+
22+
* **site:** fix round values in a community page rules ([008ffda](https://github.com/coder/balatrobench/commit/008ffdad33ec954267cf28fc502fbc46c163f6b1))
23+
* **site:** remove duplicate quotes ([4092060](https://github.com/coder/balatrobench/commit/4092060af7c884a0ffaa5cc4c2225d90cb2637e0))
24+
* **site:** remove hallucinated quotes and add new ones ([ce13c08](https://github.com/coder/balatrobench/commit/ce13c08c590faf84dfd64188fe2504db3161e963))
25+
* **site:** update the url to balatrobench.com ([8b02b2a](https://github.com/coder/balatrobench/commit/8b02b2a94b47c59bb5273da3ffe6f17573cd1670))
26+
27+
28+
### Performance Improvements
29+
30+
* **site:** add LRU caches for request content ([769d17d](https://github.com/coder/balatrobench/commit/769d17dab0652abd4c6c548cee810496f7b15873))
31+
332
## [1.4.0](https://github.com/coder/balatrobench/compare/v1.3.0...v1.4.0) (2026-01-24)
433

534

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "balatrobench",
3-
"version": "1.4.0",
3+
"version": "1.5.0",
44
"description": "Performance leaderboards for LLMs playing Balatro",
55
"scripts": {
66
"test": "playwright test",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "balatrobench"
3-
version = "1.4.0"
3+
version = "1.5.0"
44
description = "Benchmark analysis and visualization for BalatroLLM"
55
readme = "README.md"
66
authors = [{ name = "S1M0N38", email = "bertolottosimone@gmail.com" }]

src/balatrobench/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
)
3232
from .writer import BenchmarkWriter
3333

34-
__version__ = "1.4.0"
34+
__version__ = "1.5.0"
3535

3636
__all__ = [
3737
# Version

0 commit comments

Comments
 (0)