Skip to content

Commit

Permalink
chore: update serde_json to latest version (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
hiltontj authored Nov 3, 2024
1 parent 716d6b6 commit 622401d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions serde_json_path/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

- **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)

- **fixed**: edge case where `.` in regexes for `match` and `search` functions was matching `\r\n` properly ([#92])
Expand Down
2 changes: 1 addition & 1 deletion serde_json_path/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ inventory = { version = "0.3.15" }
nom = "7.1.3"
regex = { version="1.11.1", optional = true }
serde = { version = "1.0.214", features = ["derive"] }
serde_json = "1.0.1"
serde_json = "1.0.132"
thiserror = "1.0.67"
tracing = { version = "0.1.40", optional = true }

Expand Down
4 changes: 4 additions & 0 deletions serde_json_path_core/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

- **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)

- **breaking**: ensure integers used as indices are within the [valid range for I-JSON][i-json-range] ([#98])
Expand Down
2 changes: 1 addition & 1 deletion serde_json_path_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ functions = []
[dependencies]
inventory = { version = "0.3.15" }
serde = { version = "1.0.214", features = ["derive"] }
serde_json = "1.0.1"
serde_json = "1.0.132"
thiserror = "1.0.67"
tracing = { version = "0.1.40", optional = true }

Expand Down

0 comments on commit 622401d

Please sign in to comment.