Bump more version numbers to 0.9

This commit is contained in:
Brian Anderson 2014-01-02 10:55:28 -08:00
parent c229aef567
commit 1155ee9ee9
2 changed files with 11 additions and 11 deletions

View File

@ -18,7 +18,7 @@ documentation.
[tutorial]: http://static.rust-lang.org/doc/tutorial.html [tutorial]: http://static.rust-lang.org/doc/tutorial.html
[wiki-start]: https://github.com/mozilla/rust/wiki/Note-getting-started-developing-Rust [wiki-start]: https://github.com/mozilla/rust/wiki/Note-getting-started-developing-Rust
[win-exe]: http://static.rust-lang.org/dist/rust-0.8-install.exe [win-exe]: http://static.rust-lang.org/dist/rust-0.9-install.exe
### Linux / OS X ### Linux / OS X
@ -33,9 +33,9 @@ documentation.
To build from the [tarball] do: To build from the [tarball] do:
$ curl -O http://static.rust-lang.org/dist/rust-0.8.tar.gz $ curl -O http://static.rust-lang.org/dist/rust-0.9.tar.gz
$ tar -xzf rust-0.8.tar.gz $ tar -xzf rust-0.9.tar.gz
$ cd rust-0.8 $ cd rust-0.9
Or to build from the [repo] do: Or to build from the [repo] do:
@ -60,8 +60,8 @@ documentation.
4. Enjoy! 4. Enjoy!
[repo]: https://github.com/mozilla/rust [repo]: https://github.com/mozilla/rust
[tarball]: http://static.rust-lang.org/dist/rust-0.8.tar.gz [tarball]: http://static.rust-lang.org/dist/rust-0.9.tar.gz
[tutorial]: http://static.rust-lang.org/doc/0.8/tutorial.html [tutorial]: http://static.rust-lang.org/doc/0.9/tutorial.html
## Notes ## Notes

View File

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