diff --git a/CHANGELOG.md b/CHANGELOG.md index b1ee7b1..85eaf8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.4.7] 2024-03-18 + +- Fixes issue with `pop_front` on a token with an empty string leaving the pointer in an invalid state. #25 by [@wngr](https://github.com/wngr) +- Fixes issue with `pop_back` on a token with an empty string. #26 by [@asmello](https://github.com/asmello) + ## [0.4.6] 2024-03-24 - Fixes `Pointer::last` panicking for empty/root pointers #23 by [@wngr](https://github.com/wngr) diff --git a/Cargo.toml b/Cargo.toml index 287c67a..30b5073 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ keywords = ["json-pointer", "rfc-6901", "6901"] license = "MIT OR Apache-2.0" name = "jsonptr" repository = "https://github.com/chanced/jsonptr" -version = "0.4.6" +version = "0.4.7" [dependencies] fluent-uri = { version = "0.1.4", optional = true, default-features = false }