From 27423c31a49ab08c52dbe1120838c903c533202c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 21 Sep 2025 15:52:03 +0000 Subject: [PATCH 1/2] chore: release v0.23.0 --- CHANGELOG.md | 10 ++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c4924e0..d70e4d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.23.0](https://github.com/denehoffman/ganesh/compare/v0.22.0...v0.23.0) - 2025-09-21 + +### Fixed + +- correct links in docs and apply some clippy lints to L-BFGS-B + +### Other + +- ensure main matches unified API branch + ## [0.22.0](https://github.com/denehoffman/ganesh/compare/v0.21.1...v0.22.0) - 2025-04-11 ### Added diff --git a/Cargo.lock b/Cargo.lock index 231c39e..b850713 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -322,7 +322,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "ganesh" -version = "0.22.0" +version = "0.23.0" dependencies = [ "approx", "codspeed-criterion-compat", diff --git a/Cargo.toml b/Cargo.toml index ea5adf8..41013ee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ganesh" -version = "0.22.0" +version = "0.23.0" edition = "2021" description = "Function minimization in Rust, simplified" documentation = "https://docs.rs/ganesh" From 9dd9b72a54640d21f7ec713507506b68f6ae3c29 Mon Sep 17 00:00:00 2001 From: "Nathaniel D. Hoffman" <36977879+denehoffman@users.noreply.github.com> Date: Sun, 21 Sep 2025 10:55:59 -0500 Subject: [PATCH 2/2] docs: Update CHANGELOG for version 0.23.0 --- CHANGELOG.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d70e4d6..3afd5bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,13 +8,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.23.0](https://github.com/denehoffman/ganesh/compare/v0.22.0...v0.23.0) - 2025-09-21 -### Fixed - -- correct links in docs and apply some clippy lints to L-BFGS-B - -### Other +### Added -- ensure main matches unified API branch +- Major refactor of `ganesh` crate which includes large changes to the user-facing API +- Large performance improvements across main algorithms like Nelder-Mead and L-BFGS-B +- Unified interface for `Transform`s like bounds transformations +- Unified interface for `Terminator`s and `Observer`s +- `Engine`-less processing of all algorithms under singe trait interface +- Many other bugfixes and improvements ## [0.22.0](https://github.com/denehoffman/ganesh/compare/v0.21.1...v0.22.0) - 2025-04-11