From 8fbd3f18bcc4134318036f7cf634ae9f351eb1b3 Mon Sep 17 00:00:00 2001 From: Ed Page <eopage@gmail.com> Date: Tue, 29 Oct 2024 12:57:08 -0500 Subject: [PATCH] chore: Release --- Cargo.lock | 4 ++-- crates/snapbox/CHANGELOG.md | 5 ++++- crates/snapbox/Cargo.toml | 2 +- crates/trycmd/CHANGELOG.md | 5 ++++- crates/trycmd/Cargo.toml | 4 ++-- crates/tryfn/Cargo.toml | 2 +- 6 files changed, 14 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fa58d32b..8b6fa56e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -793,7 +793,7 @@ checksum = "fa42c91313f1d05da9b26f267f931cf178d4aba455b4c4622dd7355eb80c6640" [[package]] name = "snapbox" -version = "0.6.18" +version = "0.6.19" dependencies = [ "anstream 0.6.14", "anstyle", @@ -907,7 +907,7 @@ dependencies = [ [[package]] name = "trycmd" -version = "0.15.7" +version = "0.15.8" dependencies = [ "anstream 0.6.14", "automod", diff --git a/crates/snapbox/CHANGELOG.md b/crates/snapbox/CHANGELOG.md index d56e83ef..9656ef10 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/). <!-- next-header --> ## [Unreleased] - ReleaseDate +## [0.6.19] - 2024-10-29 + ### Fixes - Pull in `escargot` fix @@ -500,7 +502,8 @@ Other ## [0.1.0] - 2021-12-28 <!-- next-url --> -[Unreleased]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.6.18...HEAD +[Unreleased]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.6.19...HEAD +[0.6.19]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.6.18...snapbox-v0.6.19 [0.6.18]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.6.17...snapbox-v0.6.18 [0.6.17]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.6.16...snapbox-v0.6.17 [0.6.16]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.6.15...snapbox-v0.6.16 diff --git a/crates/snapbox/Cargo.toml b/crates/snapbox/Cargo.toml index 9c71b258..605021af 100644 --- a/crates/snapbox/Cargo.toml +++ b/crates/snapbox/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "snapbox" -version = "0.6.18" +version = "0.6.19" description = "Snapshot testing toolbox" homepage = "https://github.com/assert-rs/trycmd/tree/main/crates/snapbox" documentation = "http://docs.rs/snapbox/" diff --git a/crates/trycmd/CHANGELOG.md b/crates/trycmd/CHANGELOG.md index 18597f80..43fa692b 100644 --- a/crates/trycmd/CHANGELOG.md +++ b/crates/trycmd/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). <!-- next-header --> ## [Unreleased] - ReleaseDate +## [0.15.8] - 2024-10-29 + ### Fixes - Pull in `escargot` fix @@ -445,7 +447,8 @@ Config ## [0.1.0] - 2021-11-05 <!-- next-url --> -[Unreleased]: https://github.com/assert-rs/trycmd/compare/trycmd-v0.15.7...HEAD +[Unreleased]: https://github.com/assert-rs/trycmd/compare/trycmd-v0.15.8...HEAD +[0.15.8]: https://github.com/assert-rs/trycmd/compare/trycmd-v0.15.7...trycmd-v0.15.8 [0.15.7]: https://github.com/assert-rs/trycmd/compare/trycmd-v0.15.6...trycmd-v0.15.7 [0.15.6]: https://github.com/assert-rs/trycmd/compare/trycmd-v0.15.5...trycmd-v0.15.6 [0.15.5]: https://github.com/assert-rs/trycmd/compare/trycmd-v0.15.4...trycmd-v0.15.5 diff --git a/crates/trycmd/Cargo.toml b/crates/trycmd/Cargo.toml index 57ea4509..df25fb32 100644 --- a/crates/trycmd/Cargo.toml +++ b/crates/trycmd/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trycmd" -version = "0.15.7" +version = "0.15.8" description = "Snapshot testing for a herd of CLI tests" authors = ["Ed Page <eopage@gmail.com>"] homepage = "https://github.com/assert-rs/trycmd" @@ -48,7 +48,7 @@ required-features = ["schema"] [dependencies] automod = "1.0.14" -snapbox = { path = "../snapbox", version = "0.6.18", default-features = false, features = ["cmd"] } +snapbox = { path = "../snapbox", version = "0.6.19", 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 44bcdf53..515a43da 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.6.18", default-features = false } +snapbox = { path = "../snapbox", version = "0.6.19", default-features = false } libtest-mimic = "0.7.0" ignore = "0.4.11"