From 28de73bb57bac5fc5478946dce8f14b9a8214218 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Wed, 13 Mar 2024 09:43:01 -0500 Subject: [PATCH] chore: Release --- Cargo.lock | 2 +- Cargo.toml | 2 +- crates/snapbox/CHANGELOG.md | 5 ++++- crates/snapbox/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bfd40010..2735a62a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -853,7 +853,7 @@ checksum = "62ac7f900db32bf3fd12e0117dd3dc4da74bc52ebaac97f39668446d89694803" [[package]] name = "snapbox" -version = "0.5.8" +version = "0.5.9" dependencies = [ "anstream", "anstyle", diff --git a/Cargo.toml b/Cargo.toml index a99aa65b..bd5e539a 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.8", default-features = false, features = ["cmd"] } +snapbox = { path = "crates/snapbox", version = "0.5.9", 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 bafb0f90..be979cd4 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.9] - 2024-03-13 + ### Fixes - Don't strip on `str![].indent(false)` to work with lines with indentation @@ -300,7 +302,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.8...HEAD +[Unreleased]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.5.9...HEAD +[0.5.9]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.5.8...snapbox-v0.5.9 [0.5.8]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.5.7...snapbox-v0.5.8 [0.5.7]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.5.6...snapbox-v0.5.7 [0.5.6]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.5.5...snapbox-v0.5.6 diff --git a/crates/snapbox/Cargo.toml b/crates/snapbox/Cargo.toml index 7265412f..46ac93e6 100644 --- a/crates/snapbox/Cargo.toml +++ b/crates/snapbox/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "snapbox" -version = "0.5.8" +version = "0.5.9" description = "Snapshot testing toolbox" repository = "https://github.com/assert-rs/trycmd/" homepage = "https://github.com/assert-rs/trycmd/tree/main/crates/snapbox"