0.2 -> 0.3

This commit is contained in:
Brian Anderson 2012-07-10 11:53:22 -07:00
parent d0ac1bbfaf
commit 57e160b29d
3 changed files with 7 additions and 7 deletions

View 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)),)

View File

@ -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

View 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