From 049541532f30922a33d89a27600ed4e36baba5e1 Mon Sep 17 00:00:00 2001 From: Trevor Hilton Date: Thu, 13 Jul 2023 07:01:36 -0400 Subject: [PATCH] Make updates for release of 0.6.2 This involved a bump to `serde_json_path_core` to 0.1.1 --- serde_json_path/CHANGELOG.md | 8 +++++--- serde_json_path/Cargo.toml | 6 +++--- serde_json_path_core/CHANGELOG.md | 4 +++- serde_json_path_core/Cargo.toml | 2 +- 4 files changed, 12 insertions(+), 8 deletions(-) diff --git a/serde_json_path/CHANGELOG.md b/serde_json_path/CHANGELOG.md index 31953d2..57bc0f2 100644 --- a/serde_json_path/CHANGELOG.md +++ b/serde_json_path/CHANGELOG.md @@ -7,14 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased -* **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] +# 0.6.2 (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]) [#50]: https://github.com/hiltontj/serde_json_path/pull/50 # 0.6.1 (5 July 2023) -* **documentation**: Updated links to JSONPath specification to latest version (base 14) [#43] -* **fixed**: Support newline characters in query strings where previously they were not being supported [#44] +* **documentation**: Updated links to JSONPath specification to latest version (base 14) ([#43]) +* **fixed**: Support newline characters in query strings where previously they were not being supported ([#44]) [#43]: https://github.com/hiltontj/serde_json_path/pull/43 [#44]: https://github.com/hiltontj/serde_json_path/pull/44 diff --git a/serde_json_path/Cargo.toml b/serde_json_path/Cargo.toml index 723e959..2a346cf 100644 --- a/serde_json_path/Cargo.toml +++ b/serde_json_path/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "serde_json_path" -version = "0.6.1" +version = "0.6.2" edition = "2021" license = "MIT" authors = ["Trevor Hilton "] -description = "Parse serde_json Values using JSONPath queries" +description = "Query serde_json Values using JSONPath" documentation = "https://docs.rs/serde_json_path" repository = "https://github.com/hiltontj/serde_json_path" readme = "README.md" @@ -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.0" } +serde_json_path_core = { path = "../serde_json_path_core", version = "0.1.1" } 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 7a44a24..a397870 100644 --- a/serde_json_path_core/CHANGELOG.md +++ b/serde_json_path_core/CHANGELOG.md @@ -7,7 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased -* **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] +# 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]) [#50]: https://github.com/hiltontj/serde_json_path/pull/50 diff --git a/serde_json_path_core/Cargo.toml b/serde_json_path_core/Cargo.toml index c85e8e7..3c2beb5 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.0" +version = "0.1.1" edition = "2021" license = "MIT" authors = ["Trevor Hilton "]