From 225247c8add4bf0830c4ba327afb6e60648e5e9a Mon Sep 17 00:00:00 2001 From: Trevor Hilton Date: Fri, 23 Feb 2024 20:52:51 -0500 Subject: [PATCH 1/2] chore: release changes --- serde_json_path/CHANGELOG.md | 2 ++ serde_json_path/Cargo.toml | 6 +++--- serde_json_path_core/CHANGELOG.md | 2 ++ serde_json_path_core/Cargo.toml | 2 +- serde_json_path_macros/Cargo.toml | 4 ++-- 5 files changed, 10 insertions(+), 6 deletions(-) diff --git a/serde_json_path/CHANGELOG.md b/serde_json_path/CHANGELOG.md index bd6efa1..64831f0 100644 --- a/serde_json_path/CHANGELOG.md +++ b/serde_json_path/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased +# 0.6.6 (23 February 2024) + - **docs**: update links to refer to RFC 9535 ([#81]) [#81]: https://github.com/hiltontj/serde_json_path/pull/81 diff --git a/serde_json_path/Cargo.toml b/serde_json_path/Cargo.toml index 9221011..4362247 100644 --- a/serde_json_path/Cargo.toml +++ b/serde_json_path/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde_json_path" -version = "0.6.5" +version = "0.6.6" edition = "2021" license = "MIT" authors = ["Trevor Hilton "] @@ -22,8 +22,8 @@ once_cell = { version = "1.17.1" } regex = "1.7.1" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -serde_json_path_core = { path = "../serde_json_path_core", version = "0.1.4" } -serde_json_path_macros = { path = "../serde_json_path_macros", version = "0.1.2" } +serde_json_path_core = { path = "../serde_json_path_core", version = "0.1.5" } +serde_json_path_macros = { path = "../serde_json_path_macros", version = "0.1.3" } thiserror = "1.0" tracing = { version = "0.1", optional = true } diff --git a/serde_json_path_core/CHANGELOG.md b/serde_json_path_core/CHANGELOG.md index a33002b..5984c78 100644 --- a/serde_json_path_core/CHANGELOG.md +++ b/serde_json_path_core/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased +# 0.1.5 (2 February 2024) + - **docs**: update links to refer to RFC 9535 ([#81]) [#81]: https://github.com/hiltontj/serde_json_path/pull/81 diff --git a/serde_json_path_core/Cargo.toml b/serde_json_path_core/Cargo.toml index e0f8705..97757d1 100644 --- a/serde_json_path_core/Cargo.toml +++ b/serde_json_path_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde_json_path_core" -version = "0.1.4" +version = "0.1.5" edition = "2021" license = "MIT" authors = ["Trevor Hilton "] diff --git a/serde_json_path_macros/Cargo.toml b/serde_json_path_macros/Cargo.toml index b5c1a24..f3345a4 100644 --- a/serde_json_path_macros/Cargo.toml +++ b/serde_json_path_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde_json_path_macros" -version = "0.1.2" +version = "0.1.3" edition = "2021" license = "MIT" authors = ["Trevor Hilton "] @@ -13,7 +13,7 @@ keywords = ["json", "jsonpath", "json_path", "serde", "serde_json"] [dependencies] serde_json_path_macros_internal = { path = "src/internal", version = "0.1.1" } -serde_json_path_core = { path = "../serde_json_path_core", version = "0.1.4" } +serde_json_path_core = { path = "../serde_json_path_core", version = "0.1.5" } inventory = "0.3" once_cell = "1" From 0ebfdf5c7149b2532f37a9f4d81d162963bd8ff0 Mon Sep 17 00:00:00 2001 From: Trevor Hilton Date: Fri, 23 Feb 2024 20:56:04 -0500 Subject: [PATCH 2/2] chore: fix changelogs --- serde_json_path_core/CHANGELOG.md | 2 +- serde_json_path_macros/CHANGELOG.md | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/serde_json_path_core/CHANGELOG.md b/serde_json_path_core/CHANGELOG.md index 5984c78..3914a52 100644 --- a/serde_json_path_core/CHANGELOG.md +++ b/serde_json_path_core/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased -# 0.1.5 (2 February 2024) +# 0.1.5 (23 February 2024) - **docs**: update links to refer to RFC 9535 ([#81]) diff --git a/serde_json_path_macros/CHANGELOG.md b/serde_json_path_macros/CHANGELOG.md index 951b031..d4d06ac 100644 --- a/serde_json_path_macros/CHANGELOG.md +++ b/serde_json_path_macros/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased +# 0.1.3 (23 February 2024) + +- **internal**: update serde_json_path_core dependency + # 0.1.2 (2 February 2024) - **internal**: address new clippy lints in Rust 1.74 ([#70])