Updated Cargo.toml version number output

The sensible default used here for the version number in the
auto-generated Cargo.toml is 0.1.0, not 0.0.1 (at least as of cargo
0.2.0-nightly).
This commit is contained in:
Chuck Bassett 2015-06-05 23:33:30 -04:00
parent c78c0994b1
commit 1826672c06

View File

@ -170,7 +170,7 @@ This is all we need to get started. First, lets check out `Cargo.toml`:
[package]
name = "hello_world"
version = "0.0.1"
version = "0.1.0"
authors = ["Your Name <you@example.com>"]
```