From 65d9416bbb9101cdd5190398a16188625a596c59 Mon Sep 17 00:00:00 2001 From: Trevor Hilton Date: Fri, 2 Feb 2024 16:02:55 -0500 Subject: [PATCH] release: 0.6.5 Updated Cargo.toml files with new versions and bumped in the versions to the CHANGELOG.md files --- 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/CHANGELOG.md | 2 ++ serde_json_path_macros/Cargo.toml | 6 +++--- serde_json_path_macros/src/internal/Cargo.toml | 2 +- 7 files changed, 14 insertions(+), 8 deletions(-) diff --git a/serde_json_path/CHANGELOG.md b/serde_json_path/CHANGELOG.md index a51c586..457f8ca 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.5 (2 February 2024) + ## Added: `NormalizedPath` and `PathElement` types ([#78]) The `NormalizedPath` struct represents the location of a node within a JSON object. Its representation is like so: diff --git a/serde_json_path/Cargo.toml b/serde_json_path/Cargo.toml index 3e1c441..9221011 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.4" +version = "0.6.5" 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.3" } -serde_json_path_macros = { path = "../serde_json_path_macros", version = "0.1.1" } +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" } 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 0be1e6b..a9c6502 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.4 (2 February 2024) + ## Added: `NormalizedPath` and `PathElement` types ([#78]) The `NormalizedPath` struct represents the location of a node within a JSON object. Its representation is like so: diff --git a/serde_json_path_core/Cargo.toml b/serde_json_path_core/Cargo.toml index d033535..e0f8705 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.3" +version = "0.1.4" edition = "2021" license = "MIT" authors = ["Trevor Hilton "] diff --git a/serde_json_path_macros/CHANGELOG.md b/serde_json_path_macros/CHANGELOG.md index 70748e8..951b031 100644 --- a/serde_json_path_macros/CHANGELOG.md +++ b/serde_json_path_macros/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased +# 0.1.2 (2 February 2024) + - **internal**: address new clippy lints in Rust 1.74 ([#70]) - **internal**: code clean-up ([#72]) diff --git a/serde_json_path_macros/Cargo.toml b/serde_json_path_macros/Cargo.toml index 59fe2a4..b5c1a24 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.1" +version = "0.1.2" edition = "2021" license = "MIT" authors = ["Trevor Hilton "] @@ -12,8 +12,8 @@ keywords = ["json", "jsonpath", "json_path", "serde", "serde_json"] [lib] [dependencies] -serde_json_path_macros_internal = { path = "src/internal", version = "0.1.0" } -serde_json_path_core = { path = "../serde_json_path_core", version = "0.1.3" } +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" } inventory = "0.3" once_cell = "1" diff --git a/serde_json_path_macros/src/internal/Cargo.toml b/serde_json_path_macros/src/internal/Cargo.toml index 64030ad..8e4bb5d 100644 --- a/serde_json_path_macros/src/internal/Cargo.toml +++ b/serde_json_path_macros/src/internal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde_json_path_macros_internal" -version = "0.1.0" +version = "0.1.1" edition = "2021" license = "MIT" authors = ["Trevor Hilton "]