Skip to content

Commit eb70fdf

Browse files
authored
v0.5.1 (#105)
1 parent 1be930c commit eb70fdf

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-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.5.0"
3+
version = "0.5.1"
44
authors = ["bluss"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"

README.md

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

1111
# Recent Changes
1212

13+
- 0.5.1
14+
- [#102](https://github.com/petgraph/fixedbitset/pull/102): Added `contains_unchecked`, `insert_unchecked`, `put_unchecked`,
15+
`set_unchecked`, `toggle_unchecked`, `removed_unchecked`, `copy_bit_unchecked` unsafe variants of the safe functions, by @james7132
16+
- [#103](https://github.com/petgraph/fixedbitset/pull/103): Added `into_ones` which returns a owned iterator over the one
17+
values from a bitset, by @james7132.
18+
- [#104](https://github.com/petgraph/fixedbitset/pull/104): Implemented `DoubleEndedIterator` for `Union`, `Intersection`,
19+
`Difference`, and `SymmetricDifference` , by @james7132.
1320
- 0.5.0
1421
- [#74](https://github.com/petgraph/fixedbitset/pull/74): Accelerated set operations (union, intersection, difference,
1522
symmetric difference) by using larger blocks internally, by @james7132.

0 commit comments

Comments
 (0)