Skip to content

Commit

Permalink
release: 0.6.5
Browse files Browse the repository at this point in the history
Updated Cargo.toml files with new versions and bumped in the versions to the CHANGELOG.md files
  • Loading branch information
hiltontj committed Feb 2, 2024
1 parent 3b231b3 commit 65d9416
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 8 deletions.
2 changes: 2 additions & 0 deletions serde_json_path/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

# Unreleased

# 0.6.5 (2 February 2024)

## Added: `NormalizedPath` and `PathElement` types ([#78])

The `NormalizedPath` struct represents the location of a node within a JSON object. Its representation is like so:
Expand Down
6 changes: 3 additions & 3 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.6.4"
version = "0.6.5"
edition = "2021"
license = "MIT"
authors = ["Trevor Hilton <[email protected]>"]
Expand All @@ -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.3" }
serde_json_path_macros = { path = "../serde_json_path_macros", version = "0.1.1" }
serde_json_path_core = { path = "../serde_json_path_core", version = "0.1.4" }
serde_json_path_macros = { path = "../serde_json_path_macros", version = "0.1.2" }
thiserror = "1.0"
tracing = { version = "0.1", optional = true }

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

# Unreleased

# 0.1.4 (2 February 2024)

## Added: `NormalizedPath` and `PathElement` types ([#78])

The `NormalizedPath` struct represents the location of a node within a JSON object. Its representation is like so:
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.1.3"
version = "0.1.4"
edition = "2021"
license = "MIT"
authors = ["Trevor Hilton <[email protected]>"]
Expand Down
2 changes: 2 additions & 0 deletions serde_json_path_macros/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

# Unreleased

# 0.1.2 (2 February 2024)

- **internal**: address new clippy lints in Rust 1.74 ([#70])
- **internal**: code clean-up ([#72])

Expand Down
6 changes: 3 additions & 3 deletions serde_json_path_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serde_json_path_macros"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
license = "MIT"
authors = ["Trevor Hilton <[email protected]>"]
Expand All @@ -12,8 +12,8 @@ keywords = ["json", "jsonpath", "json_path", "serde", "serde_json"]
[lib]

[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.3" }
serde_json_path_macros_internal = { path = "src/internal", version = "0.1.1" }
serde_json_path_core = { path = "../serde_json_path_core", version = "0.1.4" }
inventory = "0.3"
once_cell = "1"

Expand Down
2 changes: 1 addition & 1 deletion serde_json_path_macros/src/internal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serde_json_path_macros_internal"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
license = "MIT"
authors = ["Trevor Hilton <[email protected]>"]
Expand Down

0 comments on commit 65d9416

Please sign in to comment.