diff --git a/CHANGELOG.md b/CHANGELOG.md index 0aa6825..b8c17e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ ## [Unreleased] - ReleaseDate +## [0.13.0] - 2022-03-05 + ### Changed - upgrade to `clap` version 3 @@ -68,7 +70,9 @@ The initial release. -[unreleased]: https://github.com/fnichol/names/compare/v0.12.0...HEAD +[unreleased]: https://github.com/fnichol/names/compare/v0.13.0...HEAD + +[0.13.0]: https://github.com/fnichol/names/compare/v0.12.0...v0.13.0 [0.12.0]: https://github.com/fnichol/names/compare/v0.11.0...v0.12.0 diff --git a/Cargo.lock b/Cargo.lock index b63d248..d79ae5f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -150,7 +150,7 @@ checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" [[package]] name = "names" -version = "0.12.1-dev" +version = "0.13.0" dependencies = [ "clap", "rand", diff --git a/Cargo.toml b/Cargo.toml index ed8327d..b43021f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "names" -version = "0.12.1-dev" +version = "0.13.0" authors = ["Fletcher Nichol "] edition = "2018" license = "MIT" diff --git a/README.md b/README.md index 31ab180..08bf64b 100644 --- a/README.md +++ b/README.md @@ -205,7 +205,7 @@ adding `names` to your dependencies in your project's `Cargo.toml` file: ```toml [dependencies] -names = { version = "0.12.0", default-features = false } +names = { version = "0.13.0", default-features = false } ``` ### Examples diff --git a/src/lib.rs b/src/lib.rs index 1c2b59c..97444e5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -12,7 +12,7 @@ //! //! ```toml //! [dependencies] -//! names = { version = "0.12.0", default-features = false } +//! names = { version = "0.13.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.12.1-dev")] +#![doc(html_root_url = "https://docs.rs/names/0.13.0")] #![deny(missing_docs)] use rand::{rngs::ThreadRng, seq::SliceRandom, Rng};