Skip to content

Commit e5c7d3b

Browse files
committed
chore: release v0.11.0
Features: - Inferred winning tile display in frontend with auto-selection - WASM test suite (27 tests) Changes: - ScoringOutput includes inferred_winning_tile field
1 parent 2750efd commit e5c7d3b

File tree

5 files changed

+24
-6
lines changed

5 files changed

+24
-6
lines changed

CHANGELOG.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,25 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
## [0.10.0] - 2026-01-30
5+
## [0.11.0]
6+
7+
### Added
8+
9+
- **Inferred Winning Tile Display**: When scoring a hand without explicitly selecting a winning tile, the frontend now shows which tile was automatically inferred and highlights it in the hand
10+
- Yellow info banner: "💡 Winning tile inferred as [tile]. Click a tile in your hand to select explicitly."
11+
- Auto-selects the inferred tile in the hand display with the "WIN" badge
12+
- Handles red five matching (inferred "5m" correctly matches red "0m")
13+
- **WASM Test Suite**: Added 27 focused tests for `agari-wasm` covering the WASM binding layer
14+
- Request/response integration tests
15+
- Inferred winning tile functionality
16+
- Shanten and ukeire API wrappers
17+
- Helper functions (`parse_wind`, `yaku_name`, `format_structure`)
18+
19+
### Changed
20+
21+
- `ScoringOutput` in WASM bindings now includes optional `inferred_winning_tile` field
22+
23+
## [0.10.0]
624

725
### Added
826

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ lto = "thin"
1212
opt-level = "z"
1313

1414
[workspace.package]
15-
version = "0.10.0"
15+
version = "0.11.0"
1616
edition = "2024"
1717
repository = "https://github.com/ryblogs/agari"
1818
homepage = "https://github.com/ryblogs/agari"

crates/agari-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agari"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
edition = "2024"
55
repository = "https://github.com/ryblogs/agari"
66
homepage = "https://github.com/ryblogs/agari"

crates/agari-wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agari-wasm"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
edition = "2024"
55
description = "WebAssembly bindings for Agari Riichi Mahjong scoring engine"
66
license = "MIT"

0 commit comments

Comments
 (0)