diff --git a/CHANGELOG.md b/CHANGELOG.md index 98d3b005..7bf3254f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,15 @@ and this project adheres to ## [Unreleased] +## [0.15.2](https://github.com/pace-rs/pace/compare/pace-rs-v0.15.1...pace-rs-v0.15.2) - 2024-03-24 + +### Added +- *(completions)* add nushell completions + +### Other +- remove pace_testing crate and migrate it to integration test ([#108](https://github.com/pace-rs/pace/pull/108)) +- ignore tests that use utc locally and only run them in ci + ## [0.15.1](https://github.com/pace-rs/pace/compare/pace-rs-v0.15.0...pace-rs-v0.15.1) - 2024-03-24 ### Added diff --git a/Cargo.lock b/Cargo.lock index 64415da2..b2937ff2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1255,7 +1255,7 @@ checksum = "caff54706df99d2a78a5a4e3455ff45448d81ef1bb63c22cd14052ca0e993a3f" [[package]] name = "pace-rs" -version = "0.15.1" +version = "0.15.2" dependencies = [ "abscissa_core", "assert_cmd", @@ -1299,7 +1299,7 @@ dependencies = [ [[package]] name = "pace_core" -version = "0.18.0" +version = "0.19.0" dependencies = [ "chrono", "chrono-tz", diff --git a/Cargo.toml b/Cargo.toml index 978a77d3..e5d2e17f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -68,7 +68,7 @@ wildmatch = "2.3.3" [package] name = "pace-rs" -version = "0.15.1" +version = "0.15.2" authors = { workspace = true } categories = { workspace = true } edition = { workspace = true } diff --git a/crates/core/CHANGELOG.md b/crates/core/CHANGELOG.md index 5d7bdc38..342c997c 100644 --- a/crates/core/CHANGELOG.md +++ b/crates/core/CHANGELOG.md @@ -8,6 +8,11 @@ and this project adheres to ## [Unreleased] +## [0.19.0](https://github.com/pace-rs/pace/compare/pace_core-v0.18.0...pace_core-v0.19.0) - 2024-03-24 + +### Other +- remove pace_testing crate and migrate it to integration test ([#108](https://github.com/pace-rs/pace/pull/108)) + ## [0.18.0](https://github.com/pace-rs/pace/compare/pace_core-v0.17.0...pace_core-v0.18.0) - 2024-03-24 ### Added diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index a6a4b046..81b2d328 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pace_core" -version = "0.18.0" +version = "0.19.0" authors = { workspace = true } categories = { workspace = true } edition = { workspace = true }