diff --git a/.bumpversion.toml b/.bumpversion.toml index 84f1683..c4a1268 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -3,7 +3,7 @@ # SPDX-License-Identifier: Apache-2.0 OR MIT [tool.bumpversion] -current_version = "0.1.1" +current_version = "0.1.2" [[tool.bumpversion.files]] filename = "README.md" diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index e57ad84..879d4eb 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -14,7 +14,7 @@ All notable changes to this project will be documented in this file. The format is based on https://keepachangelog.com/[Keep a Changelog], and this project adheres to https://semver.org/[Semantic Versioning]. -== {compare-url}/v0.1.1\...HEAD[Unreleased] +== {compare-url}/v0.1.1\...v0.1.2[0.1.2] - 2024-11-30 === Added diff --git a/Cargo.lock b/Cargo.lock index f7ed00e..e72f854 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10,7 +10,7 @@ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" [[package]] name = "bit-int" -version = "0.1.1" +version = "0.1.2" dependencies = [ "num-traits", ] diff --git a/Cargo.toml b/Cargo.toml index 2871936..ab1b0c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "bit-int" -version = "0.1.1" +version = "0.1.2" authors = ["Shun Sakai "] edition = "2021" rust-version = "1.67.0" diff --git a/README.md b/README.md index c04d702..4c2a48c 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -bit-int = "0.1.1" +bit-int = "0.1.2" ``` ### Documentation diff --git a/src/lib.rs b/src/lib.rs index 2288ee1..df094f9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -66,7 +66,7 @@ //! [C23]: https://en.cppreference.com/w/c/23 //! [Zig]: https://ziglang.org/ -#![doc(html_root_url = "https://docs.rs/bit-int/0.1.1/")] +#![doc(html_root_url = "https://docs.rs/bit-int/0.1.2/")] #![no_std] // Lint levels of rustc. #![deny(missing_docs)]