diff --git a/CHANGELOG.md b/CHANGELOG.md index 45d4ea8..04f9e44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.2](https://github.com/deepjoy/taskmill/compare/v0.5.1...v0.5.2) - 2026-03-19 + +### Other + +- reduce SQL round-trips and CPU overhead in scheduler hot paths ([#60](https://github.com/deepjoy/taskmill/pull/60)) +- coalesce task completions into batched transactions ([#59](https://github.com/deepjoy/taskmill/pull/59)) +- reduce SQL round-trips in scheduler hot paths ([#57](https://github.com/deepjoy/taskmill/pull/57)) + ## [0.5.1](https://github.com/deepjoy/taskmill/compare/v0.5.0...v0.5.1) - 2026-03-19 ### Fixed diff --git a/Cargo.toml b/Cargo.toml index c5f496d..e431efb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "taskmill" -version = "0.5.1" +version = "0.5.2" edition = "2021" rust-version = "1.75" license = "MIT"