Skip to content

Commit

Permalink
v0.5.0 (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
james7132 committed Feb 26, 2024
1 parent fab28de commit 3e2cc8a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
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.4.2"
version = "0.5.0"
authors = ["bluss"]
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand Down
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,18 @@ Please read the [API documentation here](https://docs.rs/fixedbitset/)

# Recent Changes

- 0.5.0
- [#74](https://github.com/petgraph/fixedbitset/pull/74): Accelerated set operations (union, intersection, difference,
symmetric difference) by using larger blocks internally, by @james7132.
- [#88](https://github.com/petgraph/fixedbitset/pull/88): Added `FixedBitSet::remove` by @james7132.
- [#89](https://github.com/petgraph/fixedbitset/pull/89): Added `FixedBitSet::zeros` and the `Zeros` iterator by @james7132.
- [#92](https://github.com/petgraph/fixedbitset/pull/92): Added `FixedBitSet::grow_and_insert` function, a
non-panicking version of `insert` that grows the underlying storage as need, by @shuoli84.
- [#98](https://github.com/petgraph/fixedbitset/pull/98): `Ones` now implements `DoubleEndedIterator`, by @tikhu.
- [#99](https://github.com/petgraph/fixedbitset/pull/99): **Breaking change**: serde now serializes and deserializes from a little-endian encoded
raw byte buffer. Existing stored instances of the serialized bitsets will need to be
re-encoded.
- Bumped MSRV to 1.56.
- 0.4.2
- [#79](https://github.com/petgraph/fixedbitset/pull/79): Add `is_clear`,
clarify `is_empty` and `len` documentation by \@nicopap.
Expand Down

0 comments on commit 3e2cc8a

Please sign in to comment.