Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.6.6 #82

Merged
merged 2 commits into from
Feb 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.6 (23 February 2024)

- **docs**: update links to refer to RFC 9535 ([#81])

[#81]: https://github.com/hiltontj/serde_json_path/pull/81
Expand Down
6 changes: 3 additions & 3 deletions serde_json_path/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serde_json_path"
version = "0.6.5"
version = "0.6.6"
edition = "2021"
license = "MIT"
authors = ["Trevor Hilton <[email protected]>"]
Expand All @@ -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 }

Expand Down
2 changes: 2 additions & 0 deletions serde_json_path_core/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.1.5 (23 February 2024)

- **docs**: update links to refer to RFC 9535 ([#81])

[#81]: https://github.com/hiltontj/serde_json_path/pull/81
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.4"
version = "0.1.5"
edition = "2021"
license = "MIT"
authors = ["Trevor Hilton <[email protected]>"]
Expand Down
4 changes: 4 additions & 0 deletions serde_json_path_macros/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down
4 changes: 2 additions & 2 deletions serde_json_path_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
Expand All @@ -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"

Expand Down
Loading