diff --git a/Cargo.lock b/Cargo.lock index 6f8edac4..467dd43d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -853,7 +853,7 @@ checksum = "62ac7f900db32bf3fd12e0117dd3dc4da74bc52ebaac97f39668446d89694803" [[package]] name = "snapbox" -version = "0.5.1" +version = "0.5.2" dependencies = [ "anstream", "anstyle", diff --git a/Cargo.toml b/Cargo.toml index c9a010b0..85d670d1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -65,7 +65,7 @@ name = "trycmd-schema" required-features = ["schema"] [dependencies] -snapbox = { path = "crates/snapbox", version = "0.5.1", default-features = false, features = ["cmd"] } +snapbox = { path = "crates/snapbox", version = "0.5.2", default-features = false, features = ["cmd"] } anstream = { version = "0.6.7", optional = true } glob = "0.3.0" diff --git a/crates/snapbox/CHANGELOG.md b/crates/snapbox/CHANGELOG.md index 64a5682e..deaa7e98 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.5.2] - 2024-02-19 + ### Features - Add `term-svg` feature for snapshotting of terminal styling by ending files with `.term.svg` @@ -264,7 +266,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.5.1...HEAD +[Unreleased]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.5.2...HEAD +[0.5.2]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.5.1...snapbox-v0.5.2 [0.5.1]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.5.0...snapbox-v0.5.1 [0.5.0]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.4.17...snapbox-v0.5.0 [0.4.17]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.4.16...snapbox-v0.4.17 diff --git a/crates/snapbox/Cargo.toml b/crates/snapbox/Cargo.toml index f221af9e..aee8ab84 100644 --- a/crates/snapbox/Cargo.toml +++ b/crates/snapbox/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "snapbox" -version = "0.5.1" +version = "0.5.2" description = "Snapshot testing toolbox" repository = "https://github.com/assert-rs/trycmd/" homepage = "https://github.com/assert-rs/trycmd/tree/main/crates/snapbox"