Skip to content

Commit

Permalink
Bump version to 1.2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
ctamblyn committed Aug 24, 2023
1 parent f529205 commit c26c267
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bit-iter"
version = "1.1.1" # remember to update html_root_url in lib.rs
version = "1.2.0" # remember to update html_root_url in lib.rs
authors = ["Christian Tamblyn <ctamblyn76@gmail.com>"]
edition = "2018"
description = "Iterate forward or backwards over the positions of set bits in a word."
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ Bit 0 is set.
with older versions, but that could change in a future patch release.

If the MSRV of `bit-iter` changes, that will be done in a _minor_ version
release (e.g. 1.1.x -> 1.2.0).
release (e.g. 1.2.x -> 1.3.0).
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
//! ```

#![no_std]
#![doc(html_root_url = "https://docs.rs/bit-iter/1.1.1")]
#![doc(html_root_url = "https://docs.rs/bit-iter/1.2.0")]

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

Expand Down

0 comments on commit c26c267

Please sign in to comment.