diff --git a/CHANGELOG.md b/CHANGELOG.md index f13243f1..3e1d7197 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [0.14.21] - 2024-02-08 + ### Internal - Update `toml_edit` @@ -406,7 +408,8 @@ Config ## [0.1.0] - 2021-11-05 -[Unreleased]: https://github.com/assert-rs/trycmd/compare/v0.14.20...HEAD +[Unreleased]: https://github.com/assert-rs/trycmd/compare/v0.14.21...HEAD +[0.14.21]: https://github.com/assert-rs/trycmd/compare/v0.14.20...v0.14.21 [0.14.20]: https://github.com/assert-rs/trycmd/compare/v0.14.19...v0.14.20 [0.14.19]: https://github.com/assert-rs/trycmd/compare/v0.14.18...v0.14.19 [0.14.18]: https://github.com/assert-rs/trycmd/compare/v0.14.17...v0.14.18 diff --git a/Cargo.lock b/Cargo.lock index 0e9a2e10..b540336c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -822,7 +822,7 @@ checksum = "62ac7f900db32bf3fd12e0117dd3dc4da74bc52ebaac97f39668446d89694803" [[package]] name = "snapbox" -version = "0.4.16" +version = "0.4.17" dependencies = [ "anstream", "anstyle", @@ -848,7 +848,7 @@ dependencies = [ [[package]] name = "snapbox-macros" -version = "0.3.7" +version = "0.3.8" dependencies = [ "anstream", ] @@ -935,7 +935,7 @@ dependencies = [ [[package]] name = "trycmd" -version = "0.14.20" +version = "0.14.21" dependencies = [ "anstream", "escargot", diff --git a/Cargo.toml b/Cargo.toml index 624d4ca2..2e1ac4c9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ include = [ [package] name = "trycmd" -version = "0.14.20" +version = "0.14.21" description = "Snapshot testing for a herd of CLI tests" authors = ["Ed Page "] repository = "https://github.com/assert-rs/trycmd.git" @@ -65,7 +65,7 @@ name = "trycmd-schema" required-features = ["schema"] [dependencies] -snapbox = { path = "crates/snapbox", version = "0.4.16", default-features = false, features = ["cmd"] } +snapbox = { path = "crates/snapbox", version = "0.4.17", default-features = false, features = ["cmd"] } anstream = { version = "0.6.7", optional = true } glob = "0.3.0" diff --git a/crates/snapbox-macros/Cargo.toml b/crates/snapbox-macros/Cargo.toml index 54fecd82..9b34b223 100644 --- a/crates/snapbox-macros/Cargo.toml +++ b/crates/snapbox-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "snapbox-macros" -version = "0.3.7" +version = "0.3.8" description = "Snapshot testing toolbox" repository = "https://github.com/assert-rs/trycmd/" homepage = "https://github.com/assert-rs/trycmd/tree/main/crates/snapbox" diff --git a/crates/snapbox/CHANGELOG.md b/crates/snapbox/CHANGELOG.md index 4b79fee8..2bb586d2 100644 --- a/crates/snapbox/CHANGELOG.md +++ b/crates/snapbox/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [0.4.17] - 2024-02-08 + ## [0.4.16] - 2024-01-12 ### Internal @@ -230,7 +232,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [0.1.0] - 2021-12-28 -[Unreleased]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.4.16...HEAD +[Unreleased]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.4.17...HEAD +[0.4.17]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.4.16...snapbox-v0.4.17 [0.4.16]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.4.15...snapbox-v0.4.16 [0.4.15]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.4.14...snapbox-v0.4.15 [0.4.14]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.4.13...snapbox-v0.4.14 diff --git a/crates/snapbox/Cargo.toml b/crates/snapbox/Cargo.toml index df4251ac..ab61bd39 100644 --- a/crates/snapbox/Cargo.toml +++ b/crates/snapbox/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "snapbox" -version = "0.4.16" +version = "0.4.17" description = "Snapshot testing toolbox" repository = "https://github.com/assert-rs/trycmd/" homepage = "https://github.com/assert-rs/trycmd/tree/main/crates/snapbox" @@ -65,7 +65,7 @@ name = "snap-fixture" # For `snapbox`s tests only [dependencies] normalize-line-endings = "0.3.0" -snapbox-macros = { path = "../snapbox-macros", version = "0.3.7" } +snapbox-macros = { path = "../snapbox-macros", version = "0.3.8" } libtest-mimic = { version = "0.7.0", optional = true } ignore = { version = "0.4", optional = true }