Skip to content

Commit 4f39abd

Browse files
committed
chore: Release
1 parent 4684a03 commit 4f39abd

8 files changed

Lines changed: 23 additions & 14 deletions

File tree

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/snapbox-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "snapbox-macros"
3-
version = "1.0.1"
3+
version = "1.1.0"
44
description = "Snapshot testing toolbox"
55
categories = ["development-tools::testing"]
66
keywords = ["cli", "test", "assert", "command"]

crates/snapbox/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [1.2.0] - 2026-03-23
11+
1012
### Compatibility
1113

1214
- Update MSRV to 1.85
@@ -562,7 +564,8 @@ Other
562564
## [0.1.0] - 2021-12-28
563565

564566
<!-- next-url -->
565-
[Unreleased]: https://github.com/assert-rs/trycmd/compare/snapbox-v1.1.0...HEAD
567+
[Unreleased]: https://github.com/assert-rs/trycmd/compare/snapbox-v1.2.0...HEAD
568+
[1.2.0]: https://github.com/assert-rs/trycmd/compare/snapbox-v1.1.0...snapbox-v1.2.0
566569
[1.1.0]: https://github.com/assert-rs/trycmd/compare/snapbox-v1.0.2...snapbox-v1.1.0
567570
[1.0.2]: https://github.com/assert-rs/trycmd/compare/snapbox-v1.0.1...snapbox-v1.0.2
568571
[1.0.1]: https://github.com/assert-rs/trycmd/compare/snapbox-v1.0.0...snapbox-v1.0.1

crates/snapbox/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "snapbox"
3-
version = "1.1.0"
3+
version = "1.2.0"
44
description = "Snapshot testing toolbox"
55
categories = ["development-tools::testing"]
66
keywords = ["cli", "test", "assert", "command"]
@@ -65,7 +65,7 @@ name = "snap-fixture" # For `snapbox`s tests only
6565

6666
[dependencies]
6767
normalize-line-endings = "0.3.0"
68-
snapbox-macros = { path = "../snapbox-macros", version = "1.0.1" }
68+
snapbox-macros = { path = "../snapbox-macros", version = "1.1.0" }
6969

7070
content_inspector = { version = "0.2.4", optional = true }
7171

crates/trycmd/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [1.2.0] - 2026-03-23
11+
1012
### Compatibility
1113

1214
- Update MSRV to 1.85
@@ -504,7 +506,8 @@ Config
504506
## [0.1.0] - 2021-11-05
505507

506508
<!-- next-url -->
507-
[Unreleased]: https://github.com/assert-rs/trycmd/compare/trycmd-v1.1.1...HEAD
509+
[Unreleased]: https://github.com/assert-rs/trycmd/compare/trycmd-v1.2.0...HEAD
510+
[1.2.0]: https://github.com/assert-rs/trycmd/compare/trycmd-v1.1.1...trycmd-v1.2.0
508511
[1.1.1]: https://github.com/assert-rs/trycmd/compare/trycmd-v1.1.0...trycmd-v1.1.1
509512
[1.1.0]: https://github.com/assert-rs/trycmd/compare/trycmd-v1.0.2...trycmd-v1.1.0
510513
[1.0.2]: https://github.com/assert-rs/trycmd/compare/trycmd-v1.0.1...trycmd-v1.0.2

crates/trycmd/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "trycmd"
3-
version = "1.1.1"
3+
version = "1.2.0"
44
description = "Snapshot testing for a herd of CLI tests"
55
categories = ["development-tools::testing"]
66
keywords = ["cli", "test", "assert", "command", "duct"]
@@ -43,7 +43,7 @@ required-features = ["schema"]
4343

4444
[dependencies]
4545
automod = "1.0.16"
46-
snapbox = { path = "../snapbox", version = "1.1.0", default-features = false, features = ["cmd"] }
46+
snapbox = { path = "../snapbox", version = "1.2.0", default-features = false, features = ["cmd"] }
4747
anstream = { version = "1.0.0", optional = true }
4848

4949
glob = "0.3.3"

crates/tryfn/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [1.1.0] - 2026-03-23
11+
1012
### Compatibility
1113

1214
- Update MSRV to 1.85
@@ -44,7 +46,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
4446
## [0.1.0] - 2024-05-17
4547

4648
<!-- next-url -->
47-
[Unreleased]: https://github.com/assert-rs/trycmd/compare/tryfn-v1.0.1...HEAD
49+
[Unreleased]: https://github.com/assert-rs/trycmd/compare/tryfn-v1.1.0...HEAD
50+
[1.1.0]: https://github.com/assert-rs/trycmd/compare/tryfn-v1.0.1...tryfn-v1.1.0
4851
[1.0.1]: https://github.com/assert-rs/trycmd/compare/tryfn-v1.0.0...tryfn-v1.0.1
4952
[1.0.0]: https://github.com/assert-rs/trycmd/compare/tryfn-v0.2.3...tryfn-v1.0.0
5053
[0.2.3]: https://github.com/assert-rs/trycmd/compare/tryfn-v0.2.2...tryfn-v0.2.3

crates/tryfn/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tryfn"
3-
version = "1.0.1"
3+
version = "1.1.0"
44
description = "File-driven snapshot testing for a function"
55
categories = ["development-tools::testing"]
66
keywords = ["test", "assert", "snapsjot"]
@@ -30,6 +30,6 @@ color = ["snapbox/color"]
3030
color-auto = ["snapbox/color-auto"]
3131

3232
[dependencies]
33-
snapbox = { path = "../snapbox", version = "1.1.0", default-features = false }
33+
snapbox = { path = "../snapbox", version = "1.2.0", default-features = false }
3434
libtest-mimic = "0.8.2"
3535
ignore = "0.4.25"

0 commit comments

Comments
 (0)