From a7c4bf8f5e80c84b806ce8f9782c80e29626375c Mon Sep 17 00:00:00 2001 From: Niklas Fiekas Date: Mon, 30 Dec 2024 17:28:56 +0100 Subject: [PATCH] prepare 0.25.2 --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1863733..4418856 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog for shakmaty-syzygy +## v0.25.2 + +- Let `Tablebase` use normalized material keys for each table. +- Small optimizations and documentation improvements. + ## v0.25.1 - Add `Tablebase::with_mmap_filesystem()` behind optional `mmap` feature. diff --git a/Cargo.toml b/Cargo.toml index dc5438f..d9ff378 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shakmaty-syzygy" -version = "0.25.1" # remember to update changelog and html_root_url +version = "0.25.2" # remember to update changelog and html_root_url description = "Probe Syzygy tablebases" repository = "https://github.com/niklasf/shakmaty-syzygy" readme = "README.md" diff --git a/src/lib.rs b/src/lib.rs index 36d3401..8e223cc 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -36,7 +36,7 @@ //! via `Tablebase::with_mmap_filesystem()`. //! * `variant`: Enables support for Antichess and Atomic chess. -#![doc(html_root_url = "https://docs.rs/shakmaty-syzygy/0.25.1")] +#![doc(html_root_url = "https://docs.rs/shakmaty-syzygy/0.25.2")] #![warn(missing_debug_implementations)] #![cfg_attr(docs_rs, feature(doc_auto_cfg))]