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

Update JSONPath Specification Links #43

Merged
merged 2 commits into from
Jun 29, 2023
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: 6 additions & 2 deletions serde_json_path/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

# Unreleased

* **changed**: Updated links to JSONPath specification to latest version (base 14) [#43]

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

# 0.6.0 (2 April 2023)

## Function Extensions ([#32])

This release introduces the implementation of [Function Extensions][jpspec_base12_func_ext] in `serde_json_path`.
This release introduces the implementation of [Function Extensions][jpspec_func_ext] in `serde_json_path`.

This release ships with support for the standard built-in functions that are part of the base JSONPath specification:

Expand Down Expand Up @@ -104,7 +108,7 @@ This split was done to accommodate the new `#[function]` attribute macro, which
`serde_json_path_macros`/`macros_internal` crates, and discussed below.

[#32]: https://github.com/hiltontj/serde_json_path/pull/32
[jpspec_base12_func_ext]: https://www.ietf.org/archive/id/draft-ietf-jsonpath-base-12.html#name-function-extensions
[jpspec_func_ext]: https://www.ietf.org/archive/id/draft-ietf-jsonpath-base-14.html#name-function-extensions

## Other Changes

Expand Down
2 changes: 1 addition & 1 deletion serde_json_path/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ additional terms or conditions.
[jsonpath]: https://datatracker.ietf.org/wg/jsonpath/about/
[serde_json_value]: https://docs.rs/serde_json/latest/serde_json/enum.Value.html
[license]: https://github.com/hiltontj/serde_json_path/blob/main/LICENSE-MIT
[jp_spec]: https://www.ietf.org/archive/id/draft-ietf-jsonpath-base-12.html
[jp_spec]: https://www.ietf.org/archive/id/draft-ietf-jsonpath-base-14.html

4 changes: 2 additions & 2 deletions serde_json_path/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,8 @@
//! # }
//! ```
//!
//! [jp_spec]: https://www.ietf.org/archive/id/draft-ietf-jsonpath-base-12.html
//! [jp_selectors]: https://www.ietf.org/archive/id/draft-ietf-jsonpath-base-12.html#name-selectors-2
//! [jp_spec]: https://www.ietf.org/archive/id/draft-ietf-jsonpath-base-14.html
//! [jp_selectors]: https://www.ietf.org/archive/id/draft-ietf-jsonpath-base-14.html#name-selectors-2

#![warn(
clippy::all,
Expand Down