diff --git a/CHANGES.md b/CHANGES.md index 0554ced..2e3ce17 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,8 @@ +# vob 3.0.5 (2025-06-25) + +* Add `unchecked_get` and `unchecked_set`. + + # vob 3.0.4 (2025-03-17) * Drop support for Rust pre-1.37. diff --git a/Cargo.toml b/Cargo.toml index 386ab8c..fc50da8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "vob" description = "Vector of Bits with Vec-like API and usize backing storage" repository = "https://github.com/softdevteam/vob/" -version = "3.0.4" +version = "3.0.5" authors = ["Laurence Tratt "] readme = "README.md" license = "Apache-2.0/MIT" @@ -15,7 +15,7 @@ serde = { version="1.0", features=["derive"], optional=true } bincode = { version = "2.0", features=["derive"], optional=true } [dev-dependencies] -criterion = "0.5" +criterion = "0.6" rand = "0.9" rand_pcg = "0.9"