diff --git a/Cargo.lock b/Cargo.lock index ddd99b8a..add1d48b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -793,7 +793,7 @@ checksum = "fa42c91313f1d05da9b26f267f931cf178d4aba455b4c4622dd7355eb80c6640" [[package]] name = "snapbox" -version = "0.5.12" +version = "0.5.13" dependencies = [ "anstream 0.6.14", "anstyle", diff --git a/crates/snapbox/CHANGELOG.md b/crates/snapbox/CHANGELOG.md index 16edc0be..d0fcb07f 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.13] - 2024-05-21 + ### Documentation - Fix deprecation message @@ -354,7 +356,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.12...HEAD +[Unreleased]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.5.13...HEAD +[0.5.13]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.5.12...snapbox-v0.5.13 [0.5.12]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.5.11...snapbox-v0.5.12 [0.5.11]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.5.10...snapbox-v0.5.11 [0.5.10]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.5.9...snapbox-v0.5.10 diff --git a/crates/snapbox/Cargo.toml b/crates/snapbox/Cargo.toml index 939c7335..12331da0 100644 --- a/crates/snapbox/Cargo.toml +++ b/crates/snapbox/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "snapbox" -version = "0.5.12" +version = "0.5.13" 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/trycmd/Cargo.toml b/crates/trycmd/Cargo.toml index 3bda2888..1c6c9777 100644 --- a/crates/trycmd/Cargo.toml +++ b/crates/trycmd/Cargo.toml @@ -48,7 +48,7 @@ required-features = ["schema"] [dependencies] automod = "1.0.14" -snapbox = { path = "../snapbox", version = "0.5.12", default-features = false, features = ["cmd"] } +snapbox = { path = "../snapbox", version = "0.5.13", default-features = false, features = ["cmd"] } anstream = { version = "0.6.7", optional = true } glob = "0.3.0" diff --git a/crates/tryfn/Cargo.toml b/crates/tryfn/Cargo.toml index e9566e67..208d92a8 100644 --- a/crates/tryfn/Cargo.toml +++ b/crates/tryfn/Cargo.toml @@ -35,6 +35,6 @@ color = ["snapbox/color"] color-auto = ["snapbox/color-auto"] [dependencies] -snapbox = { path = "../snapbox", version = "0.5.12", default-features = false } +snapbox = { path = "../snapbox", version = "0.5.13", default-features = false } libtest-mimic = "0.7.0" ignore = "0.4"