From 2f4c13c5c4bdb97b2ec3ab8e92a59eb34aea1539 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Thu, 25 Jul 2024 09:46:47 -0500 Subject: [PATCH] chore: Release --- CHANGELOG.md | 5 ++++- Cargo.lock | 6 +++--- Cargo.toml | 2 +- crates/data/Cargo.toml | 2 +- crates/harness/Cargo.toml | 6 +++--- 5 files changed, 12 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 57798ed..ae64caf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [1.0.2] - 2024-07-25 + ## [1.0.1] - 2024-05-15 ## [1.0.0] - 2023-10-23 @@ -74,7 +76,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [0.2.0] - 2021-08-16 -[Unreleased]: https://github.com/epage/git-stack/compare/v1.0.1...HEAD +[Unreleased]: https://github.com/epage/git-stack/compare/v1.0.2...HEAD +[1.0.2]: https://github.com/epage/git-stack/compare/v1.0.1...v1.0.2 [1.0.1]: https://github.com/epage/git-stack/compare/v1.0.0...v1.0.1 [1.0.0]: https://github.com/epage/git-stack/compare/v0.3.7...v1.0.0 [0.3.7]: https://github.com/epage/git-stack/compare/v0.3.6...v0.3.7 diff --git a/Cargo.lock b/Cargo.lock index b7266fe..506fafd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -432,7 +432,7 @@ dependencies = [ [[package]] name = "toml-test" -version = "1.0.1" +version = "1.0.2" dependencies = [ "chrono", "ryu", @@ -443,14 +443,14 @@ dependencies = [ [[package]] name = "toml-test-data" -version = "1.12.0" +version = "1.12.1" dependencies = [ "include_dir", ] [[package]] name = "toml-test-harness" -version = "0.4.9" +version = "0.4.10" dependencies = [ "ignore", "libtest-mimic", diff --git a/Cargo.toml b/Cargo.toml index 144f36d..9f2a750 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -91,7 +91,7 @@ zero_sized_map_values = "warn" [package] name = "toml-test" -version = "1.0.1" +version = "1.0.2" description = "Verify Rust TOML parsers" repository = "https://github.com/epage/toml-test-rs" documentation = "http://docs.rs/toml-test" diff --git a/crates/data/Cargo.toml b/crates/data/Cargo.toml index 5db7db7..b239f23 100644 --- a/crates/data/Cargo.toml +++ b/crates/data/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml-test-data" -version = "1.12.0" +version = "1.12.1" description = "TOML test cases" repository = "https://github.com/epage/toml-test-rs" readme = "README.md" diff --git a/crates/harness/Cargo.toml b/crates/harness/Cargo.toml index 1af1f58..4316aff 100644 --- a/crates/harness/Cargo.toml +++ b/crates/harness/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml-test-harness" -version = "0.4.9" +version = "0.4.10" description = "Cargo test harness for verifying TOML parsers" repository = "https://github.com/epage/toml-test-rs" readme = "README.md" @@ -16,8 +16,8 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -toml-test-data = { version = "1.12.0", path = "../data" } -toml-test = { version = "^1.0.1", path = "../../" } +toml-test-data = { version = "1.12.1", path = "../data" } +toml-test = { version = "^1.0.2", path = "../../" } ignore = "0.4.18" libtest-mimic = "0.7.0"