diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f90267..9ae050c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ ## [Unreleased] - ReleaseDate +## [0.12.0] - 2021-09-12 + > **Breaking Change Upgrade Note For Library Users** > > Due to the collapsing of a library crate and a binary/CLI crate into one @@ -61,7 +63,9 @@ The initial release. -[unreleased]: https://github.com/fnichol/names/compare/v0.11.0...HEAD +[unreleased]: https://github.com/fnichol/names/compare/v0.12.0...HEAD + +[0.12.0]: https://github.com/fnichol/names/compare/v0.11.0...v0.12.0 [0.11.0]: https://github.com/fnichol/names/compare/v0.10.0...v0.11.0 [0.10.0]: https://github.com/fnichol/names/compare/v0.9.0...v0.10.0 diff --git a/Cargo.lock b/Cargo.lock index 79387a3..08c7e58 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,5 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "atty" version = "0.2.14" @@ -153,7 +155,7 @@ checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" [[package]] name = "names" -version = "0.11.1-dev" +version = "0.12.0" dependencies = [ "clap", "rand", diff --git a/Cargo.toml b/Cargo.toml index 9928da5..01ef698 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "names" -version = "0.11.1-dev" +version = "0.12.0" authors = ["Fletcher Nichol "] edition = "2018" license = "MIT" diff --git a/README.md b/README.md index 82b2178..9fc0ed8 100644 --- a/README.md +++ b/README.md @@ -220,7 +220,7 @@ adding `names` to your dependencies in your project's `Cargo.toml` file: ```toml [dependencies] -names = { version = "0.11.1-dev", default-features = false } +names = { version = "0.12.0", default-features = false } ``` ### Examples diff --git a/src/lib.rs b/src/lib.rs index f6ebb16..72aca63 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -12,7 +12,7 @@ //! //! ```toml //! [dependencies] -//! names = { version = "0.11.1-dev", default-features = false } +//! names = { version = "0.12.0", default-features = false } //! ``` //! ## Examples //! @@ -56,7 +56,7 @@ //! assert_eq!("imaginary-roll", generator.next().unwrap()); //! ``` -#![doc(html_root_url = "https://docs.rs/names/0.11.1-dev")] +#![doc(html_root_url = "https://docs.rs/names/0.12.0")] #![deny(missing_docs)] use rand::{rngs::ThreadRng, seq::SliceRandom, Rng};