Skip to content

Commit aa1163b

Browse files
committed
Update to 0.11.0
1 parent 1fefa5b commit aa1163b

File tree

47 files changed

+88
-80
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+88
-80
lines changed

man/rustc.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH RUSTC "1" "March 2014" "rustc 0.11-pre" "User Commands"
1+
.TH RUSTC "1" "March 2014" "rustc 0.11.0" "User Commands"
22
.SH NAME
33
rustc \- The Rust compiler
44
.SH SYNOPSIS

man/rustdoc.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH RUSTDOC "1" "March 2014" "rustdoc 0.11-pre" "User Commands"
1+
.TH RUSTDOC "1" "March 2014" "rustdoc 0.11.0" "User Commands"
22
.SH NAME
33
rustdoc \- generate documentation from Rust source code
44
.SH SYNOPSIS

mk/main.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
# The version number
1616
CFG_RELEASE_NUM=0.11.0
17-
CFG_RELEASE_LABEL=-pre
17+
CFG_RELEASE_LABEL=
1818

1919
ifndef CFG_ENABLE_NIGHTLY
2020
# This is the normal version string

src/doc/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ To generate .pot and .po files, do something like:
5353
~~~~
5454
po4a --copyright-holder="The Rust Project Developers" \
5555
--package-name="Rust" \
56-
--package-version="0.11.0-pre" \
56+
--package-version="0.11.0" \
5757
-M UTF-8 -L UTF-8 \
5858
src/doc/po4a.conf
5959
~~~~
6060

61-
(the version number must be changed if it is not 0.11.0-pre now.)
61+
(the version number must be changed if it is not 0.11.0 now.)
6262

6363
Now you can translate documents with .po files, commonly used with gettext. If
6464
you are not familiar with gettext-based translation, please read the online

src/doc/guide.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ an uninstall option.
5353

5454
You can re-run this script any time you want to update Rust. Which, at this
5555
point, is often. Rust is still pre-1.0, and so people assume that you're using
56-
a very recent Rust.
56+
a very recent Rust.
5757

5858
This brings me to one other point: some people, and somewhat rightfully so, get
5959
very upset when we tell you to `curl | sudo sh`. And they should be! Basically,
@@ -168,7 +168,7 @@ Success! Let's go over what just happened in detail.
168168

169169
```
170170
fn main() {
171-
171+
172172
}
173173
```
174174

@@ -394,7 +394,7 @@ Once you have this file in place, we should be ready to build! Try this:
394394
```{bash}
395395
$ cargo build
396396
Compiling hello_world v0.1.0 (file:/home/yourname/projects/hello_world)
397-
$ ./target/hello_world
397+
$ ./target/hello_world
398398
Hello, world!
399399
```
400400

src/etc/kate/rust.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<!ENTITY rustIdent "[a-zA-Z_][a-zA-Z_0-9]*">
88
<!ENTITY rustIntSuf "([iu](8|16|32|64)?)?">
99
]>
10-
<language name="Rust" version="0.11.0-pre" kateversion="2.4" section="Sources" extensions="*.rs" mimetype="text/x-rust" priority="15">
10+
<language name="Rust" version="0.11.0" kateversion="2.4" section="Sources" extensions="*.rs" mimetype="text/x-rust" priority="15">
1111
<highlighting>
1212
<list name="fn">
1313
<item> fn </item>

src/liballoc/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
//! by libc malloc/free. The `libc_heap` module is defined to be wired up to
6161
//! the system malloc/free.
6262
63-
#![crate_id = "alloc#0.11.0-pre"]
63+
#![crate_id = "alloc#0.11.0"]
6464
#![experimental]
6565
#![license = "MIT/ASL2"]
6666
#![crate_type = "rlib"]

src/libarena/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919
//! arena but can only hold objects of a single type, and Arena, which is a
2020
//! more complex, slower Arena which can hold objects of any type.
2121
22-
#![crate_id = "arena#0.11.0-pre"]
22+
#![crate_id = "arena#0.11.0"]
2323
#![experimental]
2424
#![crate_type = "rlib"]
2525
#![crate_type = "dylib"]
2626
#![license = "MIT/ASL2"]
2727
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
2828
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
29-
html_root_url = "http://doc.rust-lang.org/")]
29+
html_root_url = "http://doc.rust-lang.org/0.11.0/")]
3030

3131
#![feature(unsafe_destructor)]
3232
#![allow(missing_doc)]

src/libcollections/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
* Collection types.
1313
*/
1414

15-
#![crate_id = "collections#0.11.0-pre"]
15+
#![crate_id = "collections#0.11.0"]
1616
#![experimental]
1717
#![crate_type = "rlib"]
1818
#![license = "MIT/ASL2"]
1919
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
2020
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
21-
html_root_url = "http://doc.rust-lang.org/",
21+
html_root_url = "http://doc.rust-lang.org/0.11.0/",
2222
html_playground_url = "http://play.rust-lang.org/")]
2323

2424
#![feature(macro_rules, managed_boxes, default_type_params, phase, globs)]

src/libcore/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@
4545
//! function; it is only required to never return.
4646
//!
4747
48-
#![crate_id = "core#0.11.0-pre"]
48+
#![crate_id = "core#0.11.0"]
4949
#![experimental]
5050
#![license = "MIT/ASL2"]
5151
#![crate_type = "rlib"]
5252
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
5353
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
54-
html_root_url = "http://doc.rust-lang.org/",
54+
html_root_url = "http://doc.rust-lang.org/0.11.0/",
5555
html_playground_url = "http://play.rust-lang.org/")]
5656

5757
#![no_std]

src/libdebug/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616
//! Additionally, it is not guaranteed that functionality such as reflection
1717
//! will persist into the future.
1818
19-
#![crate_id = "debug#0.11.0-pre"]
19+
#![crate_id = "debug#0.11.0"]
2020
#![experimental]
2121
#![license = "MIT/ASL2"]
2222
#![crate_type = "rlib"]
2323
#![crate_type = "dylib"]
2424
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
2525
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
26-
html_root_url = "http://doc.rust-lang.org/")]
26+
html_root_url = "http://doc.rust-lang.org/0.11.0/")]
2727
#![experimental]
2828
#![feature(managed_boxes, macro_rules)]
2929
#![allow(experimental)]

src/libflate/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ Simple [DEFLATE][def]-based compression. This is a wrapper around the
1818
1919
*/
2020

21-
#![crate_id = "flate#0.11.0-pre"]
21+
#![crate_id = "flate#0.11.0"]
2222
#![experimental]
2323
#![crate_type = "rlib"]
2424
#![crate_type = "dylib"]
2525
#![license = "MIT/ASL2"]
2626
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
2727
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
28-
html_root_url = "http://doc.rust-lang.org/")]
28+
html_root_url = "http://doc.rust-lang.org/0.11.0/")]
2929
#![feature(phase)]
3030

3131
#[cfg(test)] #[phase(plugin, link)] extern crate log;

src/libfmt_macros/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
//! Parsing does not happen at runtime: structures of `std::fmt::rt` are
1515
//! generated instead.
1616
17-
#![crate_id = "fmt_macros#0.11.0-pre"]
17+
#![crate_id = "fmt_macros#0.11.0"]
1818
#![experimental]
1919
#![license = "MIT/ASL2"]
2020
#![crate_type = "rlib"]

src/libfourcc/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ fn main() {
3939
4040
*/
4141

42-
#![crate_id = "fourcc#0.11.0-pre"]
42+
#![crate_id = "fourcc#0.11.0"]
4343
#![experimental]
4444
#![crate_type = "rlib"]
4545
#![crate_type = "dylib"]
4646
#![license = "MIT/ASL2"]
4747
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
4848
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
49-
html_root_url = "http://doc.rust-lang.org/")]
49+
html_root_url = "http://doc.rust-lang.org/0.11.0/")]
5050

5151
#![feature(plugin_registrar, managed_boxes)]
5252

src/libgetopts/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,14 +76,14 @@
7676
//! }
7777
//! ~~~
7878
79-
#![crate_id = "getopts#0.11.0-pre"]
79+
#![crate_id = "getopts#0.11.0"]
8080
#![experimental]
8181
#![crate_type = "rlib"]
8282
#![crate_type = "dylib"]
8383
#![license = "MIT/ASL2"]
8484
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
8585
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
86-
html_root_url = "http://doc.rust-lang.org/",
86+
html_root_url = "http://doc.rust-lang.org/0.11.0/",
8787
html_playground_url = "http://play.rust-lang.org/")]
8888
#![feature(globs, phase)]
8989
#![deny(missing_doc)]

src/libglob/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@
2323
* `glob`/`fnmatch` functions.
2424
*/
2525

26-
#![crate_id = "glob#0.11.0-pre"]
26+
#![crate_id = "glob#0.11.0"]
2727
#![experimental]
2828
#![crate_type = "rlib"]
2929
#![crate_type = "dylib"]
3030
#![license = "MIT/ASL2"]
3131
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
3232
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
33-
html_root_url = "http://doc.rust-lang.org/",
33+
html_root_url = "http://doc.rust-lang.org/0.11.0/",
3434
html_playground_url = "http://play.rust-lang.org/")]
3535

3636
use std::cell::Cell;

src/libgraphviz/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -266,14 +266,14 @@ pub fn main() {
266266
267267
*/
268268

269-
#![crate_id = "graphviz#0.11.0-pre"]
269+
#![crate_id = "graphviz#0.11.0"]
270270
#![experimental]
271271
#![crate_type = "rlib"]
272272
#![crate_type = "dylib"]
273273
#![license = "MIT/ASL2"]
274274
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
275275
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
276-
html_root_url = "http://doc.rust-lang.org/")]
276+
html_root_url = "http://doc.rust-lang.org/0.11.0/")]
277277

278278
#![experimental]
279279

src/libgreen/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -197,14 +197,14 @@
197197
//! pool.shutdown();
198198
//! ```
199199
200-
#![crate_id = "green#0.11.0-pre"]
200+
#![crate_id = "green#0.11.0"]
201201
#![experimental]
202202
#![license = "MIT/ASL2"]
203203
#![crate_type = "rlib"]
204204
#![crate_type = "dylib"]
205205
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
206206
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
207-
html_root_url = "http://doc.rust-lang.org/",
207+
html_root_url = "http://doc.rust-lang.org/0.11.0/",
208208
html_playground_url = "http://play.rust-lang.org/")]
209209

210210
// NB this does *not* include globs, please keep it that way.

src/libhexfloat/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@ fn main() {
3636
3737
*/
3838

39-
#![crate_id = "hexfloat#0.11.0-pre"]
39+
#![crate_id = "hexfloat#0.11.0"]
4040
#![experimental]
4141
#![crate_type = "rlib"]
4242
#![crate_type = "dylib"]
4343
#![license = "MIT/ASL2"]
4444
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
4545
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
46-
html_root_url = "http://doc.rust-lang.org/")]
46+
html_root_url = "http://doc.rust-lang.org/0.11.0/")]
4747
#![feature(plugin_registrar, managed_boxes)]
4848

4949
extern crate syntax;

src/liblibc/lib.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,15 @@
99
// except according to those terms.
1010

1111
#![feature(globs)]
12-
#![crate_id = "libc#0.11.0-pre"]
12+
#![crate_id = "libc#0.11.0"]
1313
#![experimental]
1414
#![no_std] // we don't need std, and we can't have std, since it doesn't exist
1515
// yet. std depends on us.
1616
#![crate_type = "rlib"]
17+
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
18+
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
19+
html_root_url = "http://doc.rust-lang.org/0.11.0/",
20+
html_playground_url = "http://play.rust-lang.org/")]
1721

1822
/*!
1923
* Bindings for the C standard library and other platform libraries

src/liblog/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -105,14 +105,14 @@ if logging is disabled, none of the components of the log will be executed.
105105
106106
*/
107107

108-
#![crate_id = "log#0.11.0-pre"]
108+
#![crate_id = "log#0.11.0"]
109109
#![experimental]
110110
#![license = "MIT/ASL2"]
111111
#![crate_type = "rlib"]
112112
#![crate_type = "dylib"]
113113
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
114114
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
115-
html_root_url = "http://doc.rust-lang.org/",
115+
html_root_url = "http://doc.rust-lang.org/0.11.0/",
116116
html_playground_url = "http://play.rust-lang.org/")]
117117

118118
#![feature(macro_rules)]

src/libnative/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@
4444
//! }
4545
//! ```
4646
47-
#![crate_id = "native#0.11.0-pre"]
47+
#![crate_id = "native#0.11.0"]
4848
#![experimental]
4949
#![license = "MIT/ASL2"]
5050
#![crate_type = "rlib"]
5151
#![crate_type = "dylib"]
5252
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
5353
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
54-
html_root_url = "http://doc.rust-lang.org/")]
54+
html_root_url = "http://doc.rust-lang.org/0.11.0/")]
5555

5656
#![deny(unused_result, unused_must_use)]
5757
#![allow(non_camel_case_types, deprecated)]

src/libnum/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@
4444
4545
#![feature(macro_rules)]
4646

47-
#![crate_id = "num#0.11.0-pre"]
47+
#![crate_id = "num#0.11.0"]
4848
#![experimental]
4949
#![crate_type = "rlib"]
5050
#![crate_type = "dylib"]
5151
#![license = "MIT/ASL2"]
5252
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
5353
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
54-
html_root_url = "http://doc.rust-lang.org/",
54+
html_root_url = "http://doc.rust-lang.org/0.11.0/",
5555
html_playground_url = "http://play.rust-lang.org/")]
5656

5757
#![allow(deprecated)] // from_str_radix

src/librand/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
//! is not recommended to use this library directly, but rather the official
1717
//! interface through `std::rand`.
1818
19-
#![crate_id = "rand#0.11.0-pre"]
19+
#![crate_id = "rand#0.11.0"]
2020
#![license = "MIT/ASL2"]
2121
#![crate_type = "rlib"]
2222
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
2323
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
24-
html_root_url = "http://doc.rust-lang.org/",
24+
html_root_url = "http://doc.rust-lang.org/0.11.0/",
2525
html_playground_url = "http://play.rust-lang.org/")]
2626

2727
#![feature(macro_rules, phase, globs)]

src/libregex/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -353,14 +353,14 @@
353353
//! characters in the search text and `m` is the number of instructions in a
354354
//! compiled expression.
355355
356-
#![crate_id = "regex#0.11.0-pre"]
356+
#![crate_id = "regex#0.11.0"]
357357
#![crate_type = "rlib"]
358358
#![crate_type = "dylib"]
359359
#![experimental]
360360
#![license = "MIT/ASL2"]
361361
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
362362
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
363-
html_root_url = "http://doc.rust-lang.org/",
363+
html_root_url = "http://doc.rust-lang.org/0.11.0/",
364364
html_playground_url = "http://play.rust-lang.org/")]
365365

366366
#![feature(macro_rules, phase)]

src/libregex_macros/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
//! This crate provides the `regex!` macro. Its use is documented in the
1212
//! `regex` crate.
1313
14-
#![crate_id = "regex_macros#0.11.0-pre"]
14+
#![crate_id = "regex_macros#0.11.0"]
1515
#![crate_type = "dylib"]
1616
#![experimental]
1717
#![license = "MIT/ASL2"]
1818
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
1919
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
20-
html_root_url = "http://doc.rust-lang.org/")]
20+
html_root_url = "http://doc.rust-lang.org/0.11.0/")]
2121

2222
#![feature(plugin_registrar, managed_boxes, quote)]
2323

0 commit comments

Comments
 (0)