Skip to content

Commit da287ee

Browse files
committed
release 0.4.2
1 parent f9d42f0 commit da287ee

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
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.1"
3+
version = "0.4.2"
44
authors = ["bluss"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"

README.md

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

1111
# Recent Changes
1212

13+
- 0.4.2
14+
- [#79](https://github.com/petgraph/fixedbitset/pull/79): Add `is_clear`,
15+
clarify `is_empty` and `len` documentation by \@nicopap.
1316
- 0.4.1
1417
- Documentation and formatting fixes.
1518
- 0.4.0

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
//!
1212
//! This version of fixedbitset requires Rust 1.39 or later.
1313
//!
14-
#![doc(html_root_url = "https://docs.rs/fixedbitset/0.4.1/")]
14+
#![doc(html_root_url = "https://docs.rs/fixedbitset/0.4.2/")]
1515
#![cfg_attr(not(feature = "std"), no_std)]
1616

1717
#[cfg(not(feature = "std"))]

0 commit comments

Comments
 (0)