diff --git a/CHANGELOG.md b/CHANGELOG.md index 9eb40ac4..025ad0bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,11 @@ and this project adheres to ## [Unreleased] +## [0.5.0](https://github.com/pace-rs/pace/compare/pace-rs-v0.4.0...pace-rs-v0.5.0) - 2024-02-12 + +### Added +- *(core)* subdivide storage trait and apply fixes ([#3](https://github.com/pace-rs/pace/pull/3)) + ## [0.4.0](https://github.com/pace-rs/pace/compare/pace-rs-v0.3.0...pace-rs-v0.4.0) - 2024-02-10 ### Added diff --git a/Cargo.lock b/Cargo.lock index 56e36f95..22a07d44 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -825,7 +825,7 @@ checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f" [[package]] name = "pace-rs" -version = "0.4.0" +version = "0.5.0" dependencies = [ "abscissa_core", "assert_cmd", @@ -845,7 +845,7 @@ dependencies = [ [[package]] name = "pace_core" -version = "0.3.0" +version = "0.4.0" dependencies = [ "async-condvar-fair", "chrono", diff --git a/Cargo.toml b/Cargo.toml index b1d7e5fe..c65edde4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ pace_core = { path = "crates/core", version = "0" } [package] name = "pace-rs" -version = "0.4.0" +version = "0.5.0" authors = ["the pace-rs team"] categories = ["command-line-utilities"] edition = "2021" diff --git a/crates/core/CHANGELOG.md b/crates/core/CHANGELOG.md index 68dc463d..f03772aa 100644 --- a/crates/core/CHANGELOG.md +++ b/crates/core/CHANGELOG.md @@ -8,6 +8,11 @@ and this project adheres to ## [Unreleased] +## [0.4.0](https://github.com/pace-rs/pace/compare/pace_core-v0.3.0...pace_core-v0.4.0) - 2024-02-12 + +### Added +- *(core)* subdivide storage trait and apply fixes ([#3](https://github.com/pace-rs/pace/pull/3)) + ## [0.3.0](https://github.com/pace-rs/pace/compare/pace_core-v0.2.0...pace_core-v0.3.0) - 2024-02-10 ### Added diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 937a12e6..4e09926a 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pace_core" -version = "0.3.0" +version = "0.4.0" authors = ["the pace-rs team"] categories = ["command-line-utilities"] edition = "2021"