Skip to content

Commit

Permalink
release: names 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fnichol committed Sep 12, 2021
1 parent 534b1cd commit 74b3d61
Show file tree
Hide file tree
Showing 5 changed files with 12 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.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
Expand Down Expand Up @@ -61,7 +63,9 @@ The initial release.
<!-- next-url -->
[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
Expand Down
4 changes: 3 additions & 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.11.1-dev"
version = "0.12.0"
authors = ["Fletcher Nichol <[email protected]>"]
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 @@ -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
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.11.1-dev", default-features = false }
//! names = { version = "0.12.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.11.1-dev")]
#![doc(html_root_url = "https://docs.rs/names/0.12.0")]
#![deny(missing_docs)]

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

0 comments on commit 74b3d61

Please sign in to comment.