From f7dd53bb961b98a1ed5e86efc2f8cfa66a45a0bd Mon Sep 17 00:00:00 2001 From: Trevor Hilton Date: Sun, 17 Sep 2023 14:35:52 -0400 Subject: [PATCH] release 0.6.3 --- serde_json_path/CHANGELOG.md | 2 ++ serde_json_path/Cargo.toml | 2 +- serde_json_path_core/CHANGELOG.md | 6 ++++++ serde_json_path_core/Cargo.toml | 2 +- 4 files changed, 10 insertions(+), 2 deletions(-) diff --git a/serde_json_path/CHANGELOG.md b/serde_json_path/CHANGELOG.md index 79d8c11..fbf34fc 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.3 (17 September 2023) + - **documentation**: Add line describing Descendant Operator ([#53]) - **documentation**: Improve example in Filter Selector section of main docs ([#54]) - **documentation**: Improve examples in Slice Slector section of main docs ([#55]) diff --git a/serde_json_path/Cargo.toml b/serde_json_path/Cargo.toml index 2a346cf..48d5901 100644 --- a/serde_json_path/Cargo.toml +++ b/serde_json_path/Cargo.toml @@ -22,7 +22,7 @@ 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.1" } +serde_json_path_core = { path = "../serde_json_path_core", version = "0.1.2" } serde_json_path_macros = { path = "../serde_json_path_macros", version = "0.1.0" } 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 a397870..17954e8 100644 --- a/serde_json_path_core/CHANGELOG.md +++ b/serde_json_path_core/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased +# 0.1.2 (17 September 2023) + +- **documentation**: Improvements to documentation ([#56]) + +[#56]: https://github.com/hiltontj/serde_json_path/pull/56 + # 0.1.1 (13 July 2023) * **fixed**: Fixed an issue in the evaluation of `SingularQuery`s that was producing false positive query results when relative singular queries, e.g., `@.bar`, were being used as comparables in a filter, e.g., `$.foo[?(@.bar == 'baz')]` ([#50]) diff --git a/serde_json_path_core/Cargo.toml b/serde_json_path_core/Cargo.toml index 3c2beb5..60e5ed5 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.1" +version = "0.1.2" edition = "2021" license = "MIT" authors = ["Trevor Hilton "]