diff --git a/CHANGELOG.md b/CHANGELOG.md index 87050bb..7c13503 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. +## [0.3.6](https://github.com/GrayJack/rbitset/compare/v0.3.5..v0.3.6) — 2025-02-16 + +### 📚 Documentation + +- Fix docs.rs doc generation — ([2bb5866](https://github.com/GrayJack/rbitset/commit/2bb5866c4c79702fb4375434a9eaade35c0232bf)) + ## [0.3.5](https://github.com/GrayJack/rbitset/compare/v0.3.4..v0.3.5) — 2025-02-16 ### 📚 Documentation diff --git a/README.md b/README.md index 51627b1..36ac578 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,11 @@ # rbitset +[![Rust](https://github.com/GrayJack/rbitset/actions/workflows/build.yml/badge.svg)](https://github.com/GrayJack/rbitset/actions) +[![Latest version](https://img.shields.io/crates/v/rbitset.svg)](https://crates.io/crates/rbitset) +[![Documentation](https://docs.rs/rbitset/badge.svg)](https://docs.rs/rbitset) +![License](https://img.shields.io/crates/l/rbitset.svg) + + A bit set, being able to hold a fixed amount of booleans in an array of integers. diff --git a/src/lib.rs b/src/lib.rs index 3104e65..d7546f7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -47,7 +47,7 @@ //! //! ```toml //! [dependencies] -//! rbitset = "0.3.5" +//! rbitset = "0.3.6" //! ``` //! //! # Examples