auto merge of #13286 : alexcrichton/rust/release, r=brson

Merging the 0.10 release into the master branch.
This commit is contained in:
bors 2014-04-03 13:52:03 -07:00
commit bb31cb8d2e
56 changed files with 162 additions and 75 deletions

View file

@ -100,9 +100,9 @@ If you've fulfilled those prerequisites, something along these lines
should work.
~~~~ {.notrust}
$ curl -O http://static.rust-lang.org/dist/rust-0.9.tar.gz
$ tar -xzf rust-0.9.tar.gz
$ cd rust-0.9
$ curl -O http://static.rust-lang.org/dist/rust-0.10.tar.gz
$ tar -xzf rust-0.10.tar.gz
$ cd rust-0.10
$ ./configure
$ make && make install
~~~~
@ -117,8 +117,8 @@ When complete, `make install` will place several programs into
`/usr/local/bin`: `rustc`, the Rust compiler, and `rustdoc`, the
API-documentation tool.
[tarball]: http://static.rust-lang.org/dist/rust-0.9.tar.gz
[win-exe]: http://static.rust-lang.org/dist/rust-0.9-install.exe
[tarball]: http://static.rust-lang.org/dist/rust-0.10.tar.gz
[win-exe]: http://static.rust-lang.org/dist/rust-0.10-install.exe
## Compiling your first program