Skip to content

Commit

Permalink
release: names 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fnichol committed Jun 28, 2022
1 parent b589b91 commit 8f09d5b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

## [Unreleased] - ReleaseDate

## [0.14.0] - 2022-06-28

### Changed

- upgrade to `regex` 1.5.6
Expand Down Expand Up @@ -74,7 +76,9 @@ The initial release.

<!-- next-url -->

[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

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "names"
version = "0.13.1-dev"
version = "0.14.0"
authors = ["Fletcher Nichol <fnichol@nichol.ca>"]
edition = "2018"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
//!
//! ```toml
//! [dependencies]
//! names = { version = "0.13.0", default-features = false }
//! names = { version = "0.14.0", default-features = false }
//! ```
//! ## Examples
//!
Expand Down Expand Up @@ -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.0")]
#![deny(missing_docs)]

use rand::{rngs::ThreadRng, seq::SliceRandom, Rng};
Expand Down

0 comments on commit 8f09d5b

Please sign in to comment.