From bd6275bb8f4d9919bfc53fe415a7215165b27258 Mon Sep 17 00:00:00 2001 From: TheNipanen <44809917+TheNipanen@users.noreply.github.com> Date: Tue, 7 Oct 2025 18:29:55 +0300 Subject: [PATCH 1/2] Fix finished games parsed from PGN not having Checkmate method when appropriate (#77) --- pgn.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pgn.go b/pgn.go index dc364aa..ba93f7e 100644 --- a/pgn.go +++ b/pgn.go @@ -727,6 +727,7 @@ func (p *Parser) addMove(move *Move) { // Update position if newPos := p.game.pos.Update(move); newPos != nil { p.game.pos = newPos + p.game.evaluatePositionStatus() } // Cache position before the move From 3a101d2c8a43a4c61b8238be27e99ab50f0132b4 Mon Sep 17 00:00:00 2001 From: Corentin GS Date: Wed, 8 Oct 2025 19:12:00 +0200 Subject: [PATCH 2/2] chore(version): v2.3.2 --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 281310b..c3dea53 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines. - - - +## v2.3.2 - 2025-10-08 + +- - - + ## v2.3.1 - 2025-09-25 #### Bug Fixes - pgn disambiguation squares (#75) - (362a897) - Corentin Giaufer Saubert