Skip to content

Commit 93d1ea0

Browse files
committed
chore: Release
1 parent b2a908e commit 93d1ea0

File tree

9 files changed

+27
-15
lines changed

9 files changed

+27
-15
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/libtest-lexarg/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+
## [0.0.3] - 2025-09-18
11+
1012
### Fixes
1113

1214
- Clean up help output
@@ -22,6 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
2224
## [0.0.1] - 2025-07-18
2325

2426
<!-- next-url -->
25-
[Unreleased]: https://github.com/epage/pytest-rs/compare/libtest-lexarg-v0.0.2...HEAD
27+
[Unreleased]: https://github.com/epage/pytest-rs/compare/libtest-lexarg-v0.0.3...HEAD
28+
[0.0.3]: https://github.com/epage/pytest-rs/compare/libtest-lexarg-v0.0.2...libtest-lexarg-v0.0.3
2629
[0.0.2]: https://github.com/epage/pytest-rs/compare/libtest-lexarg-v0.0.1...libtest-lexarg-v0.0.2
2730
[0.0.1]: https://github.com/rust-cli/argfile/compare/90e236caf0e78e0b6441117b46d6079d404188d6...libtest-lexarg-v0.0.1

crates/libtest-lexarg/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libtest-lexarg"
3-
version = "0.0.2"
3+
version = "0.0.3"
44
description = "libtest-compatible argument parser"
55
categories = ["development-tools::testing"]
66
keywords = ["libtest"]

crates/libtest2-harness/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+
## [0.0.3] - 2025-09-18
11+
1012
### Fixes
1113

1214
- Clean up help output
@@ -24,6 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
2426
## [0.0.1] - 2025-07-18
2527

2628
<!-- next-url -->
27-
[Unreleased]: https://github.com/epage/pytest-rs/compare/libtest2-harness-v0.0.2...HEAD
29+
[Unreleased]: https://github.com/epage/pytest-rs/compare/libtest2-harness-v0.0.3...HEAD
30+
[0.0.3]: https://github.com/epage/pytest-rs/compare/libtest2-harness-v0.0.2...libtest2-harness-v0.0.3
2831
[0.0.2]: https://github.com/epage/pytest-rs/compare/libtest2-harness-v0.0.1...libtest2-harness-v0.0.2
2932
[0.0.1]: https://github.com/rust-cli/argfile/compare/c96ef27899b410f9f154183989d4ccf60af27da6...libtest2-harness-v0.0.1

crates/libtest2-harness/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libtest2-harness"
3-
version = "0.0.2"
3+
version = "0.0.3"
44
description = "An experimental replacement for the core of libtest"
55
categories = ["development-tools::testing"]
66
keywords = ["libtest"]
@@ -31,7 +31,7 @@ threads = []
3131
[dependencies]
3232
lexarg-parser = { version = "0.0.2", path = "../lexarg-parser" }
3333
lexarg-error = { version = "0.0.2", path = "../lexarg-error" }
34-
libtest-lexarg = { version = "0.0.2", path = "../libtest-lexarg" }
34+
libtest-lexarg = { version = "0.0.3", path = "../libtest-lexarg" }
3535
anstream = { version = "0.6.4", optional = true }
3636
anstyle = { version = "1.0.10", optional = true }
3737
libtest-json = { version = "0.0.2", path = "../libtest-json", features = ["json"] }

crates/libtest2-mimic/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+
## [0.0.4] - 2025-09-18
11+
1012
### Fixes
1113

1214
- Clean up help output
@@ -21,7 +23,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
2123
## [0.0.1] - 2025-07-18
2224

2325
<!-- next-url -->
24-
[Unreleased]: https://github.com/epage/pytest-rs/compare/libtest2-mimic-v0.0.3...HEAD
26+
[Unreleased]: https://github.com/epage/pytest-rs/compare/libtest2-mimic-v0.0.4...HEAD
27+
[0.0.4]: https://github.com/epage/pytest-rs/compare/libtest2-mimic-v0.0.3...libtest2-mimic-v0.0.4
2528
[0.0.3]: https://github.com/epage/pytest-rs/compare/libtest2-mimic-v0.0.2...libtest2-mimic-v0.0.3
2629
[0.0.2]: https://github.com/epage/pytest-rs/compare/libtest2-mimic-v0.0.1...libtest2-mimic-v0.0.2
2730
[0.0.1]: https://github.com/rust-cli/argfile/compare/4c90b451737fda8cdb965a665d86d5a5ba06a9b4...libtest2-mimic-v0.0.1

crates/libtest2-mimic/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libtest2-mimic"
3-
version = "0.0.3"
3+
version = "0.0.4"
44
description = "An experimental replacement for libtest-mimic"
55
categories = ["development-tools::testing"]
66
keywords = ["libtest"]
@@ -30,7 +30,7 @@ threads = ["libtest2-harness/threads"]
3030

3131
[dependencies]
3232
libtest-json = { version = "0.0.2", path = "../libtest-json" }
33-
libtest2-harness = { version = "0.0.2", path = "../libtest2-harness" }
33+
libtest2-harness = { version = "0.0.3", path = "../libtest2-harness" }
3434

3535
[dev-dependencies]
3636
dunce = "1.0.4"

crates/libtest2/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+
## [0.0.3] - 2025-09-18
11+
1012
## [0.0.2] - 2025-09-12
1113

1214
- Renamed `State` to `TestContext`
@@ -16,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
1618
## [0.0.1] - 2025-07-18
1719

1820
<!-- next-url -->
19-
[Unreleased]: https://github.com/epage/pytest-rs/compare/libtest2-v0.0.2...HEAD
21+
[Unreleased]: https://github.com/epage/pytest-rs/compare/libtest2-v0.0.3...HEAD
22+
[0.0.3]: https://github.com/epage/pytest-rs/compare/libtest2-v0.0.2...libtest2-v0.0.3
2023
[0.0.2]: https://github.com/epage/pytest-rs/compare/libtest2-v0.0.1...libtest2-v0.0.2
2124
[0.0.1]: https://github.com/rust-cli/argfile/compare/2638841cce95b808989c3c2f56b73e0997f29fe2...libtest2-v0.0.1

crates/libtest2/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libtest2"
3-
version = "0.0.2"
3+
version = "0.0.3"
44
description = "An experimental replacement for libtest"
55
categories = ["development-tools::testing"]
66
keywords = ["libtest"]
@@ -29,7 +29,7 @@ color = ["libtest2-harness/color"]
2929
threads = ["libtest2-harness/threads"]
3030

3131
[dependencies]
32-
libtest2-harness = { version = "0.0.2", path = "../libtest2-harness" }
32+
libtest2-harness = { version = "0.0.3", path = "../libtest2-harness" }
3333

3434
[dev-dependencies]
3535
dunce = "1.0.4"

0 commit comments

Comments
 (0)