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

chore: updates for 0.7.1 #108

Merged
merged 1 commit into from
Nov 3, 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
8 changes: 3 additions & 5 deletions serde_json_path/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

# Unreleased

- **internal**: update `serde_json` to the latest version ([#107])

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

# 0.7.0 (3 November 2024)
# 0.7.1 (3 November 2024)

- **internal**: update `serde_json` to the latest version ([#107])
- **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], thanks [@LucasPickering])
- 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
Expand All @@ -25,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#98]: https://github.com/hiltontj/serde_json_path/pull/98
[i-json-range]: https://www.rfc-editor.org/rfc/rfc9535.html#section-2.1-4.1
[#105]: https://github.com/hiltontj/serde_json_path/pull/105
[#107]: https://github.com/hiltontj/serde_json_path/pull/107

# 0.6.7 (3 March 2024)

Expand Down
4 changes: 2 additions & 2 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.7.0"
version = "0.7.1"
edition = "2021"
license = "MIT"
authors = ["Trevor Hilton <trevor.hilton@gmail.com>"]
Expand All @@ -27,7 +27,7 @@ thiserror = "1.0.67"
tracing = { version = "0.1.40", optional = true }

# local crates:
serde_json_path_core = { path = "../serde_json_path_core", version = "0.2.0" }
serde_json_path_core = { path = "../serde_json_path_core", version = "0.2.1" }
serde_json_path_macros = { path = "../serde_json_path_macros", version = "0.1.5" }

[dev-dependencies]
Expand Down
8 changes: 3 additions & 5 deletions serde_json_path_core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

# Unreleased

- **internal**: update `serde_json` to the latest version ([#107])

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

# 0.2.0 (3 November 2024)
# 0.2.1 (3 November 2024)

- **internal**: update `serde_json` to the latest version ([#107])
- **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])

[#98]: https://github.com/hiltontj/serde_json_path/pull/98
[i-json-range]: https://www.rfc-editor.org/rfc/rfc9535.html#section-2.1-4.1
[#105]: https://github.com/hiltontj/serde_json_path/pull/105
[#107]: https://github.com/hiltontj/serde_json_path/pull/107

# 0.1.6 (3 March 2024)

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.2.0"
version = "0.2.1"
edition = "2021"
license = "MIT"
authors = ["Trevor Hilton <trevor.hilton@gmail.com>"]
Expand Down