diff --git a/CHANGELOG.md b/CHANGELOG.md index 32f4040..757e1bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.0](https://github.com/deepjoy/taskmill/compare/v0.5.3...v0.6.0) - 2026-03-21 + +### Added + +- [**breaking**] replace `&TaskContext` with `DomainTaskContext` for type-safe child spawning ([#68](https://github.com/deepjoy/taskmill/pull/68)) + +### Other + +- migrate all tests/benches from TaskExecutor to TypedExecutor ([#66](https://github.com/deepjoy/taskmill/pull/66)) + ## [0.5.3](https://github.com/deepjoy/taskmill/compare/v0.5.2...v0.5.3) - 2026-03-19 ### Other diff --git a/Cargo.toml b/Cargo.toml index fa759b4..91d1557 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "taskmill" -version = "0.5.3" +version = "0.6.0" edition = "2021" rust-version = "1.75" license = "MIT"