From 750940d8c037ac7195eb3457adffdcfffd0a1d00 Mon Sep 17 00:00:00 2001 From: Mark Buckaway Date: Sat, 19 Sep 2026 07:48:38 -0400 Subject: [PATCH] chore(release): bump version to 1.0.23 --- CHANGELOG.md | 12 ++++++++++++ src/rivercrossing/__init__.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index df32be23..39f0ea36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,18 @@ All notable changes to RiverCrossing are recorded here. The format follows ## [Unreleased] +## [1.0.23] - 2026-09-19 + +### Changed + +- **Five of a kind is wild-only** — five identical physical cards with no joker now score as four of a + kind; five of a kind needs a joker. The user guide and the design spec now state this rule. + +### Fixed + +- **PDF joker card** — the results report and podium poster render a joker as `★ JOKER` (was a bare + `★`), matching the HTML export, and the Best-5 card columns are widened so the label never clips. + ## [1.0.22] - 2026-09-19 ### Added diff --git a/src/rivercrossing/__init__.py b/src/rivercrossing/__init__.py index 7df32880..bbca37c1 100644 --- a/src/rivercrossing/__init__.py +++ b/src/rivercrossing/__init__.py @@ -7,6 +7,6 @@ "rivercrossing.__version__"``. """ -__version__ = "1.0.22" +__version__ = "1.0.23" __all__ = ["__version__"]