From 357a83a8436ee24e931403243056d8f6fde68361 Mon Sep 17 00:00:00 2001 From: Danny Hammer Date: Tue, 7 Jan 2025 17:51:51 -0700 Subject: [PATCH] chore(main): release 3.1.0 --- CHANGELOG.md | 18 ++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8564cbc..ed396cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [3.1.0](https://github.com/dannyhammer/toad/compare/v3.0.0...v3.1.0) (2025-01-08) + + +### Features + +* added `Move Overhead` UCI option. ([207f3c9](https://github.com/dannyhammer/toad/commit/207f3c91f17630d00aadc0744b88ed4b890c0542)) +* added `Move Overhead` UCI option. ([6fb5cbc](https://github.com/dannyhammer/toad/commit/6fb5cbc5c854a1d234cd65cce40335d7c6e20e34)) +* fully using PesTO's evaluation function, including tapered piece values, game phasing, etc. ([01142d5](https://github.com/dannyhammer/toad/commit/01142d5f96bcdbdd04681b2bec9a89f323f72cd7)) +* tracking several stats when debug mode enabled ([4a7a30e](https://github.com/dannyhammer/toad/commit/4a7a30e57a40af9a3dfb4d09dd40eb5306e29917)) + + +### Bug Fixes + +* fixed another overflow case ([35c9bb9](https://github.com/dannyhammer/toad/commit/35c9bb9a2c0e5aafccddfd36d2d3cc9426b2f92f)) +* fixed overflow bugs with aspiration windows... i hope ([6e73331](https://github.com/dannyhammer/toad/commit/6e73331cdec383fb8ca404105c88c73988ee749b)) +* fixed overflow in eval_for ([0e54ef3](https://github.com/dannyhammer/toad/commit/0e54ef3a2f4bd0bd72ebca169e1e0cb85225f8b6)) +* re-added sanity check for if the search is cancelled. removing it might be causing crashes at low tc again? ([55da525](https://github.com/dannyhammer/toad/commit/55da5251fa580dd81dcc2b7046a9c09ad6ae20b2)) + ## [3.0.0](https://github.com/dannyhammer/toad/compare/v2.0.0...v3.0.0) (2025-01-03) diff --git a/Cargo.lock b/Cargo.lock index 736c293..545e581 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -220,7 +220,7 @@ dependencies = [ [[package]] name = "toad" -version = "3.0.0" +version = "3.1.0" dependencies = [ "anyhow", "arrayvec", diff --git a/Cargo.toml b/Cargo.toml index 42b3ff0..3087a49 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toad" -version = "3.0.0" +version = "3.1.0" edition = "2021" authors = ["Danny Hammer "] license = "MPL-2.0"