Skip to content

Commit f7204aa

Browse files
committed
chore: Release
1 parent 86c3034 commit f7204aa

File tree

8 files changed

+23
-14
lines changed

8 files changed

+23
-14
lines changed

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 = "0.3.9"
3+
version = "0.3.10"
44
description = "Snapshot testing toolbox"
55
repository = "https://github.com/assert-rs/trycmd/"
66
homepage = "https://github.com/assert-rs/trycmd/tree/main/crates/snapbox"

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](http://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [0.6.16] - 2024-07-25
11+
1012
## [0.6.15] - 2024-07-24
1113

1214
### Features
@@ -482,7 +484,8 @@ Other
482484
## [0.1.0] - 2021-12-28
483485

484486
<!-- next-url -->
485-
[Unreleased]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.6.15...HEAD
487+
[Unreleased]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.6.16...HEAD
488+
[0.6.16]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.6.15...snapbox-v0.6.16
486489
[0.6.15]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.6.14...snapbox-v0.6.15
487490
[0.6.14]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.6.13...snapbox-v0.6.14
488491
[0.6.13]: https://github.com/assert-rs/trycmd/compare/snapbox-v0.6.12...snapbox-v0.6.13

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 = "0.6.15"
3+
version = "0.6.16"
44
description = "Snapshot testing toolbox"
55
repository = "https://github.com/assert-rs/trycmd/"
66
homepage = "https://github.com/assert-rs/trycmd/tree/main/crates/snapbox"
@@ -69,7 +69,7 @@ name = "snap-fixture" # For `snapbox`s tests only
6969

7070
[dependencies]
7171
normalize-line-endings = "0.3.0"
72-
snapbox-macros = { path = "../snapbox-macros", version = "0.3.9" }
72+
snapbox-macros = { path = "../snapbox-macros", version = "0.3.10" }
7373

7474
content_inspector = { version = "0.2.4", optional = true }
7575

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](http://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [0.15.6] - 2024-07-25
11+
1012
## [0.15.5] - 2024-07-23
1113

1214
## [0.15.4] - 2024-05-24
@@ -433,7 +435,8 @@ Config
433435
## [0.1.0] - 2021-11-05
434436

435437
<!-- next-url -->
436-
[Unreleased]: https://github.com/assert-rs/trycmd/compare/trycmd-v0.15.5...HEAD
438+
[Unreleased]: https://github.com/assert-rs/trycmd/compare/trycmd-v0.15.6...HEAD
439+
[0.15.6]: https://github.com/assert-rs/trycmd/compare/trycmd-v0.15.5...trycmd-v0.15.6
437440
[0.15.5]: https://github.com/assert-rs/trycmd/compare/trycmd-v0.15.4...trycmd-v0.15.5
438441
[0.15.4]: https://github.com/assert-rs/trycmd/compare/trycmd-v0.15.3...trycmd-v0.15.4
439442
[0.15.3]: https://github.com/assert-rs/trycmd/compare/v0.15.2...trycmd-v0.15.3

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 = "0.15.5"
3+
version = "0.15.6"
44
description = "Snapshot testing for a herd of CLI tests"
55
authors = ["Ed Page <[email protected]>"]
66
repository = "https://github.com/assert-rs/trycmd.git"
@@ -48,7 +48,7 @@ required-features = ["schema"]
4848

4949
[dependencies]
5050
automod = "1.0.14"
51-
snapbox = { path = "../snapbox", version = "0.6.15", default-features = false, features = ["cmd"] }
51+
snapbox = { path = "../snapbox", version = "0.6.16", default-features = false, features = ["cmd"] }
5252
anstream = { version = "0.6.7", optional = true }
5353

5454
glob = "0.3.0"

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](http://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [0.2.3] - 2024-07-25
11+
1012
## [0.2.2] - 2024-07-23
1113

1214
## [0.2.1] - 2024-05-23
@@ -26,7 +28,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2628
## [0.1.0] - 2024-05-17
2729

2830
<!-- next-url -->
29-
[Unreleased]: https://github.com/assert-rs/trycmd/compare/tryfn-v0.2.2...HEAD
31+
[Unreleased]: https://github.com/assert-rs/trycmd/compare/tryfn-v0.2.3...HEAD
32+
[0.2.3]: https://github.com/assert-rs/trycmd/compare/tryfn-v0.2.2...tryfn-v0.2.3
3033
[0.2.2]: https://github.com/assert-rs/trycmd/compare/tryfn-v0.2.1...tryfn-v0.2.2
3134
[0.2.1]: https://github.com/assert-rs/trycmd/compare/tryfn-v0.2.0...tryfn-v0.2.1
3235
[0.2.0]: https://github.com/assert-rs/trycmd/compare/tryfn-v0.1.0...tryfn-v0.2.0

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 = "0.2.2"
3+
version = "0.2.3"
44
description = "File-driven snapshot testing for a function"
55
authors = ["Ed Page <[email protected]>"]
66
repository = "https://github.com/assert-rs/trycmd.git"
@@ -35,6 +35,6 @@ color = ["snapbox/color"]
3535
color-auto = ["snapbox/color-auto"]
3636

3737
[dependencies]
38-
snapbox = { path = "../snapbox", version = "0.6.15", default-features = false }
38+
snapbox = { path = "../snapbox", version = "0.6.16", default-features = false }
3939
libtest-mimic = "0.7.0"
4040
ignore = "0.4.11"

0 commit comments

Comments
 (0)