Auto merge of #26047 - chuckSMASH:patch-1, r=alexcrichton

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 efb482d).
This commit is contained in:
bors 2015-06-06 21:33:43 +00:00
commit 72b03e5337

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>"]
```