From 64a5ba4ffe62fa4a9b226d3ecc2e995855026d84 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Nov 2024 21:50:09 +0000 Subject: [PATCH] chore: release v0.13.0 --- CHANGELOG.md | 11 +++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 849541f..6457bb1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.13.0](https://github.com/denehoffman/ganesh/compare/v0.12.2...v0.13.0) - 2024-11-05 + +### Added + +- add optional parameter names field to `Status` +- add `serde` serialization and deserialization to `Status` + +### Other + +- switch to codspeed for benchmarks + ## [0.12.2](https://github.com/denehoffman/ganesh/compare/v0.12.1...v0.12.2) - 2024-10-24 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 62fbdb5..4b721f7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -258,7 +258,7 @@ dependencies = [ [[package]] name = "ganesh" -version = "0.12.2" +version = "0.13.0" dependencies = [ "codspeed-criterion-compat", "ctrlc", diff --git a/Cargo.toml b/Cargo.toml index 5be1439..b8887d3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ganesh" -version = "0.12.2" +version = "0.13.0" edition = "2021" description = "Function minimization in Rust, simplified" documentation = "https://docs.rs/ganesh"