Skip to content

Commit 56ec9c2

Browse files
committed
Bump version to 0.9
1 parent 0df9b85 commit 56ec9c2

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

Makefile.in

+1-1
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

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

src/libextra/lib.rs

+1-1
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"];

src/libgreen/lib.rs

+1-1
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"];

src/libnative/lib.rs

+1-1
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"];

src/librustc/front/std_inject.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ use syntax::fold;
2121
use syntax::opt_vec;
2222
use syntax::util::small_vector::SmallVector;
2323

24-
pub static VERSION: &'static str = "0.9-pre";
24+
pub static VERSION: &'static str = "0.9";
2525

2626
pub fn maybe_inject_libstd_ref(sess: Session, crate: ast::Crate)
2727
-> ast::Crate {

src/librustc/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#[crate_id = "rustc#0.9-pre"];
11+
#[crate_id = "rustc#0.9"];
1212
#[comment = "The Rust compiler"];
1313
#[license = "MIT/ASL2"];
1414
#[crate_type = "dylib"];

src/librustdoc/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#[crate_id = "rustdoc#0.9-pre"];
11+
#[crate_id = "rustdoc#0.9"];
1212
#[desc = "rustdoc, the Rust documentation extractor"];
1313
#[license = "MIT/ASL2"];
1414
#[crate_type = "dylib"];

src/librustpkg/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
// rustpkg - a package manager and build system for Rust
1212

13-
#[crate_id = "rustpkg#0.9-pre"];
13+
#[crate_id = "rustpkg#0.9"];
1414
#[license = "MIT/ASL2"];
1515
#[crate_type = "dylib"];
1616

src/librustuv/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ via `close` and `delete` methods.
3434
3535
*/
3636

37-
#[crate_id = "rustuv#0.9-pre"];
37+
#[crate_id = "rustuv#0.9"];
3838
#[license = "MIT/ASL2"];
3939
#[crate_type = "rlib"];
4040
#[crate_type = "dylib"];

src/libstd/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
//!
4444
//! use std::prelude::*;
4545
46-
#[crate_id = "std#0.9-pre"];
46+
#[crate_id = "std#0.9"];
4747
#[comment = "The Rust standard library"];
4848
#[license = "MIT/ASL2"];
4949
#[crate_type = "rlib"];

src/libsyntax/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* macros.
1414
*/
1515

16-
#[crate_id = "syntax#0.9-pre"];
16+
#[crate_id = "syntax#0.9"];
1717
#[license = "MIT/ASL2"];
1818
#[crate_type = "dylib"];
1919
#[crate_type = "rlib"];

src/test/run-pass/use.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#[no_std];
1818
extern mod std;
1919
extern mod zed = "std";
20-
extern mod bar = "std#0.9-pre";
20+
extern mod bar = "std#0.9";
2121

2222

2323
use std::str;

0 commit comments

Comments
 (0)