Skip to content

Commit c26c267

Browse files
committed
Bump version to 1.2.0.
1 parent f529205 commit c26c267

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bit-iter"
3-
version = "1.1.1" # remember to update html_root_url in lib.rs
3+
version = "1.2.0" # remember to update html_root_url in lib.rs
44
authors = ["Christian Tamblyn <[email protected]>"]
55
edition = "2018"
66
description = "Iterate forward or backwards over the positions of set bits in a word."

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ Bit 0 is set.
5050
with older versions, but that could change in a future patch release.
5151

5252
If the MSRV of `bit-iter` changes, that will be done in a _minor_ version
53-
release (e.g. 1.1.x -> 1.2.0).
53+
release (e.g. 1.2.x -> 1.3.0).

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
//! ```
3737
3838
#![no_std]
39-
#![doc(html_root_url = "https://docs.rs/bit-iter/1.1.1")]
39+
#![doc(html_root_url = "https://docs.rs/bit-iter/1.2.0")]
4040

4141
use core::iter::{ExactSizeIterator, FusedIterator};
4242

0 commit comments

Comments
 (0)