From fdd8e123e5811af5ac6737fdcdab317fe902176e Mon Sep 17 00:00:00 2001 From: release-plz Date: Sat, 2 Sep 2023 22:40:46 +0000 Subject: [PATCH] chore: release --- CHANGELOG.md | 17 +++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a78f31..78190b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.6](https://github.com/nakedible/datealgo-rs/compare/v0.0.5...v0.0.6) - 2023-09-02 + +### Added +- Optimize `is_leap_year` and `days_in_month` + +### Other +- Add also generated asm to track evolution +- Add asm dump script using godbolt +- Add many alternatives to compare benchmark +- Add positive `is_leap_year` tests +- Slight cleanups and comments to clarify +- Update benchmarks +- Add script for dumping performance results +- Change compare benchmark to use rand values +- Change basic benchmark to use random values +- Check more with quickcheck + ## [0.0.5](https://github.com/nakedible/datealgo-rs/compare/v0.0.4...v0.0.5) - 2023-08-30 ### Added diff --git a/Cargo.toml b/Cargo.toml index fd8f61a..14aee12 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "datealgo" -version = "0.0.5" +version = "0.0.6" edition = "2021" authors = ["Nuutti Kotivuori "] description = "Low-level date algorithms for libraries"