Skip to content

Commit

Permalink
release 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jrraymond committed Mar 20, 2021
1 parent 7b800b7 commit 5ae6d8c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fixedbitset"
version = "0.3.2"
version = "0.4.0"
authors = ["bluss"]
license = "MIT/Apache-2.0"

Expand Down
9 changes: 9 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ __ https://docs.rs/fixedbitset/

Recent Changes
--------------
- 0.4.0

+ `#61`_: Require Rust 1.39.
+ `#60`_: Add `const` `FixedBitSet::new` consructor by @jakobhellermann.
+ `#59`_: Add optional `serde` support by @keshavsn.

- 0.3.2

+ `#18`_: Optimize `ones` using `trailing_zeroes` by @vks
Expand Down Expand Up @@ -106,4 +112,7 @@ option. This file may not be copied, modified, or distributed
except according to those terms.

.. _#18: https://github.com/petgraph/fixedbitset/pull/18
.. _#59: https://github.com/petgraph/fixedbitset/pull/59
.. _#60: https://github.com/petgraph/fixedbitset/pull/60
.. _#61: https://github.com/petgraph/fixedbitset/pull/61

4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
//!
//! ### Rust Version
//!
//! This version of fixedbitset requires Rust 1.31 or later.
//! This version of fixedbitset requires Rust 1.39 or later.
//!
#![doc(html_root_url="https://docs.rs/fixedbitset/0.3.2/")]
#![doc(html_root_url="https://docs.rs/fixedbitset/0.4.0/")]

#![cfg_attr(not(feature = "std"), no_std)]

Expand Down

0 comments on commit 5ae6d8c

Please sign in to comment.