diff --git a/CHANGELOG.md b/CHANGELOG.md index b8c17e6..94930f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ ## [Unreleased] - ReleaseDate +## [0.14.0] - 2022-06-28 + +### Changed + +- upgrade to `regex` 1.5.6 + ## [0.13.0] - 2022-03-05 ### Changed @@ -70,7 +76,9 @@ The initial release. -[unreleased]: https://github.com/fnichol/names/compare/v0.13.0...HEAD +[unreleased]: https://github.com/fnichol/names/compare/v0.14.0...HEAD + +[0.14.0]: https://github.com/fnichol/names/compare/v0.13.0...v0.14.0 [0.13.0]: https://github.com/fnichol/names/compare/v0.12.0...v0.13.0 diff --git a/Cargo.lock b/Cargo.lock index 1a43ed1..b3c693d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -150,7 +150,7 @@ checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" [[package]] name = "names" -version = "0.13.1-dev" +version = "0.14.1-dev" dependencies = [ "clap", "rand", diff --git a/Cargo.toml b/Cargo.toml index 0e1cd8b..0a70e0e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "names" -version = "0.13.1-dev" +version = "0.14.1-dev" authors = ["Fletcher Nichol "] edition = "2018" license = "MIT" diff --git a/README.md b/README.md index 08bf64b..9c4a744 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.13.0", default-features = false } +names = { version = "0.14.0", default-features = false } ``` ### Examples diff --git a/src/lib.rs b/src/lib.rs index 92e1890..a2561ea 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -12,7 +12,7 @@ //! //! ```toml //! [dependencies] -//! names = { version = "0.13.0", default-features = false } +//! names = { version = "0.14.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.13.1-dev")] +#![doc(html_root_url = "https://docs.rs/names/0.14.1-dev")] #![deny(missing_docs)] use rand::{rngs::ThreadRng, seq::SliceRandom, Rng};