From 1826672c061da70c8ba73dd60d72ab94389a4b58 Mon Sep 17 00:00:00 2001 From: Chuck Bassett Date: Fri, 5 Jun 2015 23:33:30 -0400 Subject: [PATCH] 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). --- src/doc/trpl/hello-cargo.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/hello-cargo.md b/src/doc/trpl/hello-cargo.md index cc8747d1fa7..4fa3489787c 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 "] ```