diff --git a/Cargo.lock b/Cargo.lock index 5dc363e..f8d49eb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -179,7 +179,7 @@ dependencies = [ [[package]] name = "croaring" -version = "2.1.1" +version = "2.2.0" dependencies = [ "criterion", "croaring-sys", diff --git a/croaring/CHANGELOG.md b/croaring/CHANGELOG.md new file mode 100644 index 0000000..8249164 --- /dev/null +++ b/croaring/CHANGELOG.md @@ -0,0 +1,16 @@ +# Changelog + +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). + +## [Unreleased] + +## [2.2.0](https://github.com/RoaringBitmap/croaring-rs/compare/croaring-v2.1.1...croaring-v2.2.0) - 2024-12-17 + +### Added +- Bitset::is_empty + +### Fixed +- Correct doc test for Bitset::minimum to match new behavior diff --git a/croaring/Cargo.toml b/croaring/Cargo.toml index d02c629..fa28a59 100644 --- a/croaring/Cargo.toml +++ b/croaring/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "croaring" -version = "2.1.1" +version = "2.2.0" edition = "2021" authors = ["croaring-rs developers"] license = "Apache-2.0"