From aa3595e658143e1b3326241088c3235468b40245 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20S=C3=A1=20de=20Mello?= Date: Thu, 20 Aug 2026 08:22:46 +0100 Subject: [PATCH] Release jsonptr version 0.8.2 Rolls the Unreleased section -- the Token::from_encoded double-tilde fix from PR 129, closing issue 128 -- into a versioned entry and bumps Cargo.toml/Cargo.lock accordingly. --- CHANGELOG.md | 2 ++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6331e79..ebe2b0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [0.8.2] 2026-08-20 + ### Fixed - Fixed `Token::from_encoded` accepting a `~` immediately followed by diff --git a/Cargo.lock b/Cargo.lock index 6336518..4e7c1c3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -135,7 +135,7 @@ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" [[package]] name = "jsonptr" -version = "0.8.1" +version = "0.8.2" dependencies = [ "miette", "quickcheck", diff --git a/Cargo.toml b/Cargo.toml index e245b19..0314f99 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.1" +version = "0.8.2" [dependencies] miette = { version = "7.4.0", optional = true, features = ["fancy"] }