Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f2004fc

Browse files
authoredFeb 24, 2024
Merge pull request #82 from hiltontj/release-0-6-6
Release `0.6.6`
2 parents 01bb563 + 0ebfdf5 commit f2004fc

File tree

6 files changed

+14
-6
lines changed

6 files changed

+14
-6
lines changed
 

‎serde_json_path/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
# Unreleased
99

10+
# 0.6.6 (23 February 2024)
11+
1012
- **docs**: update links to refer to RFC 9535 ([#81])
1113

1214
[#81]: https://github.com/hiltontj/serde_json_path/pull/81

‎serde_json_path/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "serde_json_path"
3-
version = "0.6.5"
3+
version = "0.6.6"
44
edition = "2021"
55
license = "MIT"
66
authors = ["Trevor Hilton <trevor.hilton@gmail.com>"]
@@ -22,8 +22,8 @@ once_cell = { version = "1.17.1" }
2222
regex = "1.7.1"
2323
serde = { version = "1.0", features = ["derive"] }
2424
serde_json = "1.0"
25-
serde_json_path_core = { path = "../serde_json_path_core", version = "0.1.4" }
26-
serde_json_path_macros = { path = "../serde_json_path_macros", version = "0.1.2" }
25+
serde_json_path_core = { path = "../serde_json_path_core", version = "0.1.5" }
26+
serde_json_path_macros = { path = "../serde_json_path_macros", version = "0.1.3" }
2727
thiserror = "1.0"
2828
tracing = { version = "0.1", optional = true }
2929

‎serde_json_path_core/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
# Unreleased
99

10+
# 0.1.5 (23 February 2024)
11+
1012
- **docs**: update links to refer to RFC 9535 ([#81])
1113

1214
[#81]: https://github.com/hiltontj/serde_json_path/pull/81

‎serde_json_path_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "serde_json_path_core"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
edition = "2021"
55
license = "MIT"
66
authors = ["Trevor Hilton <trevor.hilton@gmail.com>"]

‎serde_json_path_macros/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
# Unreleased
99

10+
# 0.1.3 (23 February 2024)
11+
12+
- **internal**: update serde_json_path_core dependency
13+
1014
# 0.1.2 (2 February 2024)
1115

1216
- **internal**: address new clippy lints in Rust 1.74 ([#70])

‎serde_json_path_macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "serde_json_path_macros"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
edition = "2021"
55
license = "MIT"
66
authors = ["Trevor Hilton <trevor.hilton@gmail.com>"]
@@ -13,7 +13,7 @@ keywords = ["json", "jsonpath", "json_path", "serde", "serde_json"]
1313

1414
[dependencies]
1515
serde_json_path_macros_internal = { path = "src/internal", version = "0.1.1" }
16-
serde_json_path_core = { path = "../serde_json_path_core", version = "0.1.4" }
16+
serde_json_path_core = { path = "../serde_json_path_core", version = "0.1.5" }
1717
inventory = "0.3"
1818
once_cell = "1"
1919

0 commit comments

Comments
 (0)
Please sign in to comment.