From 05221a1b5448775ee167c466953063c51ad328e9 Mon Sep 17 00:00:00 2001 From: Trevor Hilton Date: Sun, 3 Nov 2024 15:33:11 -0500 Subject: [PATCH] chore: update changelogs for new versions --- serde_json_path/CHANGELOG.md | 3 +++ serde_json_path_core/CHANGELOG.md | 2 ++ serde_json_path_macros/CHANGELOG.md | 2 ++ 3 files changed, 7 insertions(+) diff --git a/serde_json_path/CHANGELOG.md b/serde_json_path/CHANGELOG.md index 48c49df..65f3bae 100644 --- a/serde_json_path/CHANGELOG.md +++ b/serde_json_path/CHANGELOG.md @@ -7,10 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased +# 0.7.0 (3 November 2024) + - **fixed**: edge case where `.` in regexes for `match` and `search` functions was matching `\r\n` properly ([#92]) - **breaking**: added `regex` feature flag that gates regex functions `match` and `search` ([#93]) - Feature is enabled by default, but if you have `default-features = false` you'll need to explicitly add it to retain access to these functions - **breaking**(`serde_json_path_core`): ensure integers used as indices are within the [valid range for I-JSON][i-json-range] ([#98]) +- **internal**: remove use of `once_cell` and use specific versions for crate dependencies ([#105]) [#92]: https://github.com/hiltontj/serde_json_path/pull/92 [#93]: https://github.com/hiltontj/serde_json_path/pull/93 diff --git a/serde_json_path_core/CHANGELOG.md b/serde_json_path_core/CHANGELOG.md index da86695..7225a1f 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.2.0 (3 November 2024) + - **breaking**: ensure integers used as indices are within the [valid range for I-JSON][i-json-range] ([#98]) - **internal**: remove use of `once_cell` and use specific versions for crate dependencies ([#105]) diff --git a/serde_json_path_macros/CHANGELOG.md b/serde_json_path_macros/CHANGELOG.md index 72e0b8b..f72df65 100644 --- a/serde_json_path_macros/CHANGELOG.md +++ b/serde_json_path_macros/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased +# 0.1.5 (3 November 2024) + - **internal**: remove use of `once_cell` and use specific versions for crate dependencies ([#105]) [#105]: https://github.com/hiltontj/serde_json_path/pull/105