Skip to content

Commit

Permalink
Merge pull request #62 from hiltontj/release-0-6-3
Browse files Browse the repository at this point in the history
Release 0.6.3
  • Loading branch information
hiltontj committed Sep 17, 2023
2 parents 73080c5 + f7dd53b commit ab34185
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
2 changes: 2 additions & 0 deletions serde_json_path/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down
2 changes: 1 addition & 1 deletion serde_json_path/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
6 changes: 6 additions & 0 deletions serde_json_path_core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down
2 changes: 1 addition & 1 deletion serde_json_path_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
Expand Down

0 comments on commit ab34185

Please sign in to comment.