diff --git a/CHANGELOG.md b/CHANGELOG.md index 699c557..5a3daeb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,11 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [0.8.1] 2026-07-26 + ### Added - Added `Token::into_encoded`, which consumes the `Token` and returns its encoded string representation as a `Cow<'a, str>` without allocating. Resolves [#115](https://github.com/chanced/jsonptr/issues/115). +- `ReplaceError` (returned by `PointerBuf::replace`) is now re-exported from + the crate root, so callers can actually name the type. ### Changed @@ -20,6 +24,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 (`mismatched_lifetime_syntaxes`) and feature-combination dead-code warnings. Internal only; no public API changes. +### Fixed + +- Fixed several broken/stale intra-doc links (a `crate::asign` typo, an "RFC + 6091" typo, stale `toml` docs.rs links pointing at 0.8 instead of 0.9) and + a doc comment on `Pointer::len` that used `//` instead of `///` and was + silently dropped from rendered docs. + ## [0.8.0] 2026-07-26 ### Added diff --git a/Cargo.lock b/Cargo.lock index 011b5a3..6336518 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -135,7 +135,7 @@ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" [[package]] name = "jsonptr" -version = "0.8.0" +version = "0.8.1" dependencies = [ "miette", "quickcheck", diff --git a/Cargo.toml b/Cargo.toml index 7b0c20d..e245b19 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ license = "MIT OR Apache-2.0" name = "jsonptr" repository = "https://github.com/chanced/jsonptr" rust-version = "1.79.0" -version = "0.8.0" +version = "0.8.1" [dependencies] miette = { version = "7.4.0", optional = true, features = ["fancy"] }