]> git.lizzy.rs Git - rust.git/commitdiff
0.2 -> 0.3
authorBrian Anderson <banderson@mozilla.com>
Tue, 10 Jul 2012 18:53:22 +0000 (11:53 -0700)
committerBrian Anderson <banderson@mozilla.com>
Tue, 10 Jul 2012 18:53:22 +0000 (11:53 -0700)
Makefile.in
README.md
doc/tutorial.md

index 8fe670131fc7d8e9cb3bcdd6a132fb3d5ae07a60..3a762f1c00ffc6d4913a60e0e885169bf1306126 100644 (file)
@@ -129,7 +129,7 @@ LIBSYNTAX_DSYM_GLOB :=$(call CFG_LIB_DSYM_GLOB,syntax)
 
 # version-string calculation
 CFG_GIT_DIR := $(CFG_SRC_DIR).git
-CFG_RELEASE = 0.2
+CFG_RELEASE = 0.3
 CFG_VERSION = $(CFG_RELEASE)
 
 ifneq ($(wildcard $(CFG_GIT)),)
index 51e9fcd22bd77e3dbd8f07bd7fb24683d8c51593..04f52a19d1c08b8bf60df4b5ae33e6d63626a908 100644 (file)
--- a/README.md
+++ b/README.md
@@ -34,8 +34,8 @@ To build from source you will also need the following prerequisite packages:
 Assuming you're on a relatively modern Linux/OSX system and have met the
 prerequisites, something along these lines should work:
 
-    $ tar -xzf rust-0.2.tar.gz
-    $ cd rust-0.2
+    $ tar -xzf rust-0.3.tar.gz
+    $ cd rust-0.3
     $ ./configure
     $ make && make install
 
index f9a9d11d6d87a909312b86e609efad74e86ae765..cc7a148fa1f4c00d5617590415ac5bb23d5d28b1 100644 (file)
@@ -177,9 +177,9 @@ source on Windows requires some extra steps: please see the [getting
 started][wiki-get-started] page on the Rust wiki.
 
 ~~~~ {.notrust}
-$ wget http://dl.rust-lang.org/dist/rust-0.2.tar.gz
-$ tar -xzf rust-0.2.tar.gz
-$ cd rust-0.2
+$ wget http://dl.rust-lang.org/dist/rust-0.3.tar.gz
+$ tar -xzf rust-0.3.tar.gz
+$ cd rust-0.3
 $ ./configure
 $ make && make install
 ~~~~
@@ -198,7 +198,7 @@ When complete, `make install` will place the following programs into
   * `cargo`, the Rust package manager
 
 [wiki-get-started]: https://github.com/mozilla/rust/wiki/Note-getting-started-developing-Rust
-[tarball]: http://dl.rust-lang.org/dist/rust-0.2.tar.gz
+[tarball]: http://dl.rust-lang.org/dist/rust-0.3.tar.gz
 
 ## Compiling your first program