diff --git a/Cargo.toml b/Cargo.toml index 13b49fd..f0963ce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fixedbitset" -version = "0.4.0" +version = "0.4.1" authors = ["bluss"] license = "MIT/Apache-2.0" readme = "README.md" diff --git a/README.md b/README.md index f75bbbc..3da1bbc 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,8 @@ Please read the [API documentation here](https://docs.rs/fixedbitset/) # Recent Changes +- 0.4.1 + - Documentation and formatting fixes. - 0.4.0 - [#61](https://github.com/petgraph/fixedbitset/pull/61): Require Rust 1.39. diff --git a/src/lib.rs b/src/lib.rs index e25e0b5..47f1b89 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -11,7 +11,7 @@ //! //! This version of fixedbitset requires Rust 1.39 or later. //! -#![doc(html_root_url = "https://docs.rs/fixedbitset/0.4.0/")] +#![doc(html_root_url = "https://docs.rs/fixedbitset/0.4.1/")] #![cfg_attr(not(feature = "std"), no_std)] #[cfg(not(feature = "std"))]