@echecs/pgn 3.5.1 → 3.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -8,6 +8,18 @@ and this project adheres to
8
8
 
9
9
  ## [Unreleased]
10
10
 
11
+ ## [3.5.2] - 2026-03-14
12
+
13
+ ### Fixed
14
+
15
+ - Benchmark: `benko.pgn` moved to multi-game group and compared with the correct
16
+ `parseGames` API — previously called `parseGame` (single-game), causing all
17
+ comparison parsers to error
18
+ - Benchmark: `comments.pgn` BOM (`U+FEFF`) now stripped before parsing, enabling
19
+ comparison against `@mliebelt/pgn-parser` and `pgn-parser`
20
+ - Benchmark: fixture exclusion reasons documented in `BENCHMARK_RESULTS.md` and
21
+ in bench source comments
22
+
11
23
  ## [3.5.1] - 2026-03-14
12
24
 
13
25
  ### Changed
package/package.json CHANGED
@@ -57,7 +57,7 @@
57
57
  },
58
58
  "type": "module",
59
59
  "types": "dist/index.d.ts",
60
- "version": "3.5.1",
60
+ "version": "3.5.2",
61
61
  "scripts": {
62
62
  "bench": "vitest bench --run",
63
63
  "build": "pnpm run build:grammar && pnpm run build:entry",