Skip to content

Commit 9a9c4e6

Browse files
committed
---
yaml --- r: 91100 b: refs/heads/master c: 56ec9c2 h: refs/heads/master v: v3
1 parent 97aece8 commit 9a9c4e6

File tree

41 files changed

+1172
-1542
lines changed

Some content is hidden

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

41 files changed

+1172
-1542
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: a1cb8dc30c6adc88703763a8703b6a3027598b2d
2+
refs/heads/master: 56ec9c23a4a7c8f92727f3fd4e102c31a44098de
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: a6d3e57dca68fde4effdda3e4ae2887aa535fcd6
55
refs/heads/try: b160761e35efcd1207112b3b782c06633cf441a8

trunk/Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ endif
154154

155155
# version-string calculation
156156
CFG_GIT_DIR := $(CFG_SRC_DIR).git
157-
CFG_RELEASE = 0.9-pre
157+
CFG_RELEASE = 0.9
158158
CFG_VERSION = $(CFG_RELEASE)
159159
# windows exe's need numeric versions - don't use anything but
160160
# numbers and dots here

trunk/doc/tutorial-testing.md

Lines changed: 0 additions & 263 deletions
This file was deleted.

trunk/doc/tutorial.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3220,7 +3220,6 @@ tutorials on individual topics.
32203220
* [Error-handling and Conditions][conditions]
32213221
* [Packaging up Rust code][rustpkg]
32223222
* [Documenting Rust code][rustdoc]
3223-
* [Testing Rust code][testing]
32243223

32253224
There is further documentation on the [wiki], however those tend to be even
32263225
more out of date than this document.
@@ -3232,7 +3231,6 @@ more out of date than this document.
32323231
[container]: tutorial-container.html
32333232
[conditions]: tutorial-conditions.html
32343233
[rustpkg]: tutorial-rustpkg.html
3235-
[testing]: tutorial-testing.html
32363234
[rustdoc]: rustdoc.html
32373235

32383236
[wiki]: https://github.com/mozilla/rust/wiki/Docs

trunk/mk/docs.mk

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -133,13 +133,6 @@ doc/tutorial-ffi.html: tutorial-ffi.md doc/version_info.html doc/rust.css \
133133
$(Q)$(CFG_NODE) $(S)doc/prep.js --highlight $< | \
134134
$(CFG_PANDOC) $(HTML_OPTS) --output=$@
135135

136-
DOCS += doc/tutorial-testing.html
137-
doc/tutorial-testing.html: tutorial-testing.md doc/version_info.html doc/rust.css \
138-
doc/favicon.inc
139-
@$(call E, pandoc: $@)
140-
$(Q)$(CFG_NODE) $(S)doc/prep.js --highlight $< | \
141-
$(CFG_PANDOC) $(HTML_OPTS) --output=$@
142-
143136
DOCS += doc/tutorial-borrowed-ptr.html
144137
doc/tutorial-borrowed-ptr.html: tutorial-borrowed-ptr.md doc/version_info.html doc/rust.css \
145138
doc/favicon.inc

trunk/src/etc/kate/rust.xml

Lines changed: 1 addition & 1 deletion
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.9-pre" kateversion="2.4" section="Sources" extensions="*.rs;*.rc" mimetype="text/x-rust" priority="15">
10+
<language name="Rust" version="0.9" kateversion="2.4" section="Sources" extensions="*.rs;*.rc" mimetype="text/x-rust" priority="15">
1111
<highlighting>
1212
<list name="fn">
1313
<item> fn </item>

trunk/src/libextra/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Rust extras are part of the standard Rust distribution.
2020
2121
*/
2222

23-
#[crate_id = "extra#0.9-pre"];
23+
#[crate_id = "extra#0.9"];
2424
#[comment = "Rust extras"];
2525
#[license = "MIT/ASL2"];
2626
#[crate_type = "rlib"];

trunk/src/libgreen/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
//! This can be optionally linked in to rust programs in order to provide M:N
1818
//! functionality inside of 1:1 programs.
1919
20-
#[crate_id = "green#0.9-pre"];
20+
#[crate_id = "green#0.9"];
2121
#[license = "MIT/ASL2"];
2222
#[crate_type = "rlib"];
2323
#[crate_type = "dylib"];

trunk/src/libnative/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
//! runtime. In addition, all I/O provided by this crate is the thread blocking
1515
//! version of I/O.
1616
17-
#[crate_id = "native#0.9-pre"];
17+
#[crate_id = "native#0.9"];
1818
#[license = "MIT/ASL2"];
1919
#[crate_type = "rlib"];
2020
#[crate_type = "dylib"];

trunk/src/librustc/README.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ ASTs -- are in a separate crate called "syntax", whose files are in
3535
./../libsyntax, where . is the current directory (that is, the parent
3636
directory of front/, middle/, back/, and so on).
3737

38-
The entry-point for the compiler is main() in lib.rs, and
38+
The entry-point for the compiler is main() in rustc.rc, and
3939
this file sequences the various parts together.
4040

4141

@@ -75,7 +75,7 @@ The 3 central data structures:
7575
Control and information flow within the compiler:
7676
-------------------------------------------------
7777

78-
- main() in lib.rs assumes control on startup. Options are
78+
- main() in rustc.rc assumes control on startup. Options are
7979
parsed, platform is detected, etc.
8080

8181
- ./../libsyntax/parse/parser.rs parses the input files and produces an AST

0 commit comments

Comments
 (0)