Skip to content

Commit 3e2cc8a

Browse files
authored
v0.5.0 (#100)
1 parent fab28de commit 3e2cc8a

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fixedbitset"
3-
version = "0.4.2"
3+
version = "0.5.0"
44
authors = ["bluss"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,18 @@ Please read the [API documentation here](https://docs.rs/fixedbitset/)
1010

1111
# Recent Changes
1212

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

0 commit comments

Comments
 (0)