diff options
| author | bors <bors@rust-lang.org> | 2015-06-06 21:33:43 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-06-06 21:33:43 +0000 |
| commit | 72b03e533711c95b9c735caea73c754bfcbad4b3 (patch) | |
| tree | 086d4aff4985cf67c90fbd6a68f21d80434743e0 | |
| parent | 98f6e40b6e7ddcc6c6b745aac1bd45c2b8aa343f (diff) | |
| parent | 1826672c061da70c8ba73dd60d72ab94389a4b58 (diff) | |
| download | rust-72b03e533711c95b9c735caea73c754bfcbad4b3.tar.gz rust-72b03e533711c95b9c735caea73c754bfcbad4b3.zip | |
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).
| -rw-r--r-- | src/doc/trpl/hello-cargo.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/hello-cargo.md b/src/doc/trpl/hello-cargo.md index 32002ebd1ec..0e5bbea453c 100644 --- a/src/doc/trpl/hello-cargo.md +++ b/src/doc/trpl/hello-cargo.md @@ -170,7 +170,7 @@ This is all we need to get started. First, let’s check out `Cargo.toml`: [package] name = "hello_world" -version = "0.0.1" +version = "0.1.0" authors = ["Your Name <you@example.com>"] ``` |
