diff --git a/serde_json_path/CHANGELOG.md b/serde_json_path/CHANGELOG.md index de1e930..7e8849d 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.4 (9 November 2023) + - **added**: `is_empty`, `is_more_than_one`, and `as_more_than_one` methods to `ExactlyOneError` ([#65]) - **fixed**: allow whitespace before dot-name selectors ([#67]) - **fixed**: ensure that the check `== -0` in filters works as expected ([#67]) diff --git a/serde_json_path/Cargo.toml b/serde_json_path/Cargo.toml index be4aecb..3e1c441 100644 --- a/serde_json_path/Cargo.toml +++ b/serde_json_path/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde_json_path" -version = "0.6.3" +version = "0.6.4" edition = "2021" license = "MIT" authors = ["Trevor Hilton "] @@ -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.2" } -serde_json_path_macros = { path = "../serde_json_path_macros", version = "0.1.0" } +serde_json_path_core = { path = "../serde_json_path_core", version = "0.1.3" } +serde_json_path_macros = { path = "../serde_json_path_macros", version = "0.1.1" } 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 619c8de..c798f16 100644 --- a/serde_json_path_core/CHANGELOG.md +++ b/serde_json_path_core/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased +# 0.1.3 (9 November 2023) + - **added**: `is_empty`, `is_more_than_one`, and `as_more_than_one` methods to `ExactlyOneError` ([#65]) - **fixed**: ensure that the check `== -0` in filters works as expected ([#67]) diff --git a/serde_json_path_core/Cargo.toml b/serde_json_path_core/Cargo.toml index 60e5ed5..d033535 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.2" +version = "0.1.3" edition = "2021" license = "MIT" authors = ["Trevor Hilton "] diff --git a/serde_json_path_macros/CHANGELOG.md b/serde_json_path_macros/CHANGELOG.md index f0b37a7..e9d9ee1 100644 --- a/serde_json_path_macros/CHANGELOG.md +++ b/serde_json_path_macros/CHANGELOG.md @@ -7,5 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased -Initial Release +# 0.1.1 (9 November 2023) + +- bump version for `serde_json_path_core` update + +_Previous versions not tracked here._ diff --git a/serde_json_path_macros/Cargo.toml b/serde_json_path_macros/Cargo.toml index c668f3c..59fe2a4 100644 --- a/serde_json_path_macros/Cargo.toml +++ b/serde_json_path_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde_json_path_macros" -version = "0.1.0" +version = "0.1.1" edition = "2021" license = "MIT" authors = ["Trevor Hilton "] @@ -13,7 +13,7 @@ keywords = ["json", "jsonpath", "json_path", "serde", "serde_json"] [dependencies] serde_json_path_macros_internal = { path = "src/internal", version = "0.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.3" } inventory = "0.3" once_cell = "1"