From 31206b98eb29c01e37358bdfe96c6abd24b9329d Mon Sep 17 00:00:00 2001 From: Jonathan Gilchrist Date: Wed, 17 Jan 2024 21:53:52 +0000 Subject: [PATCH] v2.0 --- CHANGELOG.md | 5 ++++- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c5056108..305aa107 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +## [2.0] + * Add null move pruning * Add killer move ordering * Sort moves via individual move scoring @@ -75,6 +77,7 @@ Initial release with the following major features: * Tapered midgame vs. endgame evaluation * Incremental updates -[unreleased]: https://github.com/jgilchrist/chess-engine/compare/v1.1...HEAD +[unreleased]: https://github.com/jgilchrist/chess-engine/compare/v2.0...HEAD +[2.0]: https://github.com/jgilchrist/chess-engine/compare/v1.0..v1.1 [1.1]: https://github.com/jgilchrist/chess-engine/compare/v1.0..v1.1 [1.0]: https://github.com/jgilchrist/chess-engine/releases/tag/v1.0 diff --git a/Cargo.lock b/Cargo.lock index 7176a9ca..f464ed96 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -62,7 +62,7 @@ dependencies = [ [[package]] name = "engine" -version = "1.1.0" +version = "2.0.0" dependencies = [ "color-eyre", "git-version", diff --git a/Cargo.toml b/Cargo.toml index 7d6d62bf..49a3cb89 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "engine" -version = "1.1.0" +version = "2.0.0" edition = "2021" rust-version = "1.75"