Release 0.10.0.

This commit is contained in:
Fletcher Nichol 2015-11-01 08:30:50 -07:00
parent 6d8a563080
commit aba273486b
4 changed files with 16 additions and 5 deletions

View File

@ -1,3 +1,14 @@
## 0.10.0 / 2015-11-01
### Breaking API changes
* Use `Default` trait for Generator & Name types. (@fnichol)
### Improvements
* (cli) Update usage output. (@fnichol)
## 0.9.0 / 2015-09-15
The initial release.

View File

@ -1,6 +1,6 @@
[package]
name = "names"
version = "0.9.0"
version = "0.10.0"
authors = ["Fletcher Nichol <fnichol@nichol.ca>"]
license = "MIT"
readme = "README.md"

6
cli/Cargo.lock generated
View File

@ -1,9 +1,9 @@
[root]
name = "names-cli"
version = "0.9.0"
version = "0.10.0"
dependencies = [
"clap 1.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
"names 0.9.0",
"names 0.10.0",
]
[[package]]
@ -42,7 +42,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "names"
version = "0.9.0"
version = "0.10.0"
dependencies = [
"rand 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)",
]

View File

@ -1,6 +1,6 @@
[package]
name = "names-cli"
version = "0.9.0"
version = "0.10.0"
authors = ["Fletcher Nichol <fnichol@nichol.ca>"]
license = "MIT"
repository = "https://github.com/fnichol/names.git"