diff --git a/CHANGELOG.md b/CHANGELOG.md index 12b4a31..28bfa00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +0.9.0 (2025-09-30) +================== +reexport `Number` +Add a fmt::Display impl for Number https://github.com/PSeitz/serde_json_borrow/pull/39 (Thanks @quodlibetor) +feat: Add get_key_value_at method for O(1) lookup in ObjectAsVec https://github.com/PSeitz/serde_json_borrow/pull/40 (Thanks @quodlibetor) + 0.8.0 (2025-06-15) ================== perf: add CowStr type to be able to use Cow::Borrowed on keys https://github.com/PSeitz/serde_json_borrow/pull/32 (Thanks @jszwec) diff --git a/Cargo.toml b/Cargo.toml index b175b5f..2660361 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "serde_json_borrow" categories = ["parsing", "parser-implementations", "encoding"] authors = ["Pascal Seitz "] description = "Provides JSON deserialization into a borrowed DOM" -version = "0.8.0" +version = "0.8.1" edition = "2021" license = "MIT" keywords = ["JSON", "serde", "deserialization", "ref", "borrowed"] diff --git a/src/lib.rs b/src/lib.rs index a241bd4..9680d60 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -88,6 +88,7 @@ mod value; #[cfg(feature = "cowkeys")] mod cowstr; +pub use num::Number; pub use object_vec::{KeyStrType, ObjectAsVec, ObjectAsVec as Map, ObjectEntry}; pub use ownedvalue::OwnedValue; pub use value::Value;