about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2013-09-26 18:18:42 -0700
committerBrian Anderson <banderson@mozilla.com>2013-09-26 18:18:42 -0700
commit99c1fb8c661134e80df9e87e6c8fd5b4258293e9 (patch)
treed33e62e202cb4283a5992bab2bf906f4493f62a3
parent48499c7494d47f505a640157816cea2690b8d407 (diff)
downloadrust-99c1fb8c661134e80df9e87e6c8fd5b4258293e9.tar.gz
rust-99c1fb8c661134e80df9e87e6c8fd5b4258293e9.zip
Update version numbers to 0.9-pre
-rw-r--r--Makefile.in4
-rw-r--r--src/etc/kate/rust.xml2
-rw-r--r--src/libextra/extra.rs2
-rw-r--r--src/librust/rust.rs2
-rw-r--r--src/librustc/front/std_inject.rs2
-rw-r--r--src/librustc/front/test.rs2
-rw-r--r--src/librustc/rustc.rs2
-rw-r--r--src/librustdoc/rustdoc.rs2
-rw-r--r--src/librusti/rusti.rs2
-rw-r--r--src/librustpkg/rustpkg.rs2
-rw-r--r--src/libstd/std.rs4
-rw-r--r--src/libsyntax/syntax.rs2
-rw-r--r--src/test/run-pass/use.rs2
13 files changed, 15 insertions, 15 deletions
diff --git a/Makefile.in b/Makefile.in
index 6363326571e..9114c9da121 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -141,11 +141,11 @@ endif
 
 # version-string calculation
 CFG_GIT_DIR := $(CFG_SRC_DIR).git
-CFG_RELEASE = 0.8
+CFG_RELEASE = 0.9-pre
 CFG_VERSION = $(CFG_RELEASE)
 # windows exe's need numeric versions - don't use anything but
 # numbers and dots here
-CFG_VERSION_WIN = 0.8
+CFG_VERSION_WIN = 0.9
 
 ifneq ($(wildcard $(CFG_GIT)),)
 ifneq ($(wildcard $(CFG_GIT_DIR)),)
diff --git a/src/etc/kate/rust.xml b/src/etc/kate/rust.xml
index 6a603685537..e9ce6b8f19d 100644
--- a/src/etc/kate/rust.xml
+++ b/src/etc/kate/rust.xml
@@ -7,7 +7,7 @@
 	<!ENTITY rustIdent "[a-zA-Z_][a-zA-Z_0-9]*">
 	<!ENTITY rustIntSuf "([iu](8|16|32|64)?)?">
 ]>
-<language name="Rust" version="0.8" kateversion="2.4" section="Sources" extensions="*.rs;*.rc" mimetype="text/x-rust" priority="15">
+<language name="Rust" version="0.9-pre" kateversion="2.4" section="Sources" extensions="*.rs;*.rc" mimetype="text/x-rust" priority="15">
 <highlighting>
 	<list name="fn">
 		<item> fn </item>
diff --git a/src/libextra/extra.rs b/src/libextra/extra.rs
index f55eff9360d..796dd9c7c7e 100644
--- a/src/libextra/extra.rs
+++ b/src/libextra/extra.rs
@@ -21,7 +21,7 @@ Rust extras are part of the standard Rust distribution.
 */
 
 #[link(name = "extra",
-       vers = "0.8",
+       vers = "0.9-pre",
        uuid = "122bed0b-c19b-4b82-b0b7-7ae8aead7297",
        url = "https://github.com/mozilla/rust/tree/master/src/libextra")];
 
diff --git a/src/librust/rust.rs b/src/librust/rust.rs
index 6ebce51b29f..be7b2084fef 100644
--- a/src/librust/rust.rs
+++ b/src/librust/rust.rs
@@ -13,7 +13,7 @@
 // FIXME #2238 Make run only accept source that emits an executable
 
 #[link(name = "rust",
-       vers = "0.8",
+       vers = "0.9-pre",
        uuid = "4a24da33-5cc8-4037-9352-2cbe9bd9d27c",
        url = "https://github.com/mozilla/rust/tree/master/src/rust")];
 
diff --git a/src/librustc/front/std_inject.rs b/src/librustc/front/std_inject.rs
index ab407806bcc..ad5575f14a7 100644
--- a/src/librustc/front/std_inject.rs
+++ b/src/librustc/front/std_inject.rs
@@ -20,7 +20,7 @@ use syntax::fold::ast_fold;
 use syntax::fold;
 use syntax::opt_vec;
 
-static STD_VERSION: &'static str = "0.8";
+static STD_VERSION: &'static str = "0.9-pre";
 
 pub fn maybe_inject_libstd_ref(sess: Session, crate: @ast::Crate)
                                -> @ast::Crate {
diff --git a/src/librustc/front/test.rs b/src/librustc/front/test.rs
index 18998015e95..4ac398d351f 100644
--- a/src/librustc/front/test.rs
+++ b/src/librustc/front/test.rs
@@ -279,7 +279,7 @@ fn mk_std(cx: &TestCtxt) -> ast::view_item {
                                             path_node(~[id_extra]),
                                             ast::DUMMY_NODE_ID))])
     } else {
-        let mi = attr::mk_name_value_item_str(@"vers", @"0.8");
+        let mi = attr::mk_name_value_item_str(@"vers", @"0.9-pre");
         ast::view_item_extern_mod(id_extra, None, ~[mi], ast::DUMMY_NODE_ID)
     };
     ast::view_item {
diff --git a/src/librustc/rustc.rs b/src/librustc/rustc.rs
index 7599de1a9a3..4c354c902b6 100644
--- a/src/librustc/rustc.rs
+++ b/src/librustc/rustc.rs
@@ -9,7 +9,7 @@
 // except according to those terms.
 
 #[link(name = "rustc",
-       vers = "0.8",
+       vers = "0.9-pre",
        uuid = "0ce89b41-2f92-459e-bbc1-8f5fe32f16cf",
        url = "https://github.com/mozilla/rust/tree/master/src/rustc")];
 
diff --git a/src/librustdoc/rustdoc.rs b/src/librustdoc/rustdoc.rs
index ccab6dad835..73a28baab06 100644
--- a/src/librustdoc/rustdoc.rs
+++ b/src/librustdoc/rustdoc.rs
@@ -9,7 +9,7 @@
 // except according to those terms.
 
 #[link(name = "rustdoc",
-       vers = "0.8",
+       vers = "0.9-pre",
        uuid = "8c6e4598-1596-4aa5-a24c-b811914bbbc6",
        url = "https://github.com/mozilla/rust/tree/master/src/librustdoc")];
 
diff --git a/src/librusti/rusti.rs b/src/librusti/rusti.rs
index eb94a112dd1..4e72656942b 100644
--- a/src/librusti/rusti.rs
+++ b/src/librusti/rusti.rs
@@ -59,7 +59,7 @@
  */
 
 #[link(name = "rusti",
-       vers = "0.8",
+       vers = "0.9-pre",
        uuid = "7fb5bf52-7d45-4fee-8325-5ad3311149fc",
        url = "https://github.com/mozilla/rust/tree/master/src/rusti")];
 
diff --git a/src/librustpkg/rustpkg.rs b/src/librustpkg/rustpkg.rs
index c10ea2fb424..c87269ab153 100644
--- a/src/librustpkg/rustpkg.rs
+++ b/src/librustpkg/rustpkg.rs
@@ -11,7 +11,7 @@
 // rustpkg - a package manager and build system for Rust
 
 #[link(name = "rustpkg",
-       vers = "0.8",
+       vers = "0.9-pre",
        uuid = "25de5e6e-279e-4a20-845c-4cabae92daaf",
        url = "https://github.com/mozilla/rust/tree/master/src/librustpkg")];
 
diff --git a/src/libstd/std.rs b/src/libstd/std.rs
index 46d655e6379..5d2a7d88fd7 100644
--- a/src/libstd/std.rs
+++ b/src/libstd/std.rs
@@ -49,7 +49,7 @@ they contained the following prologue:
 
 
 #[link(name = "std",
-       vers = "0.8",
+       vers = "0.9-pre",
        uuid = "c70c24a7-5551-4f73-8e37-380b11d80be8",
        url = "https://github.com/mozilla/rust/tree/master/src/libstd")];
 
@@ -67,7 +67,7 @@ they contained the following prologue:
 #[deny(missing_doc)];
 
 // Make extra accessible for benchmarking
-#[cfg(test)] extern mod extra(vers="0.8");
+#[cfg(test)] extern mod extra(vers="0.9-pre");
 
 // Make std testable by not duplicating lang items. See #2912
 #[cfg(test)] extern mod realstd(name = "std");
diff --git a/src/libsyntax/syntax.rs b/src/libsyntax/syntax.rs
index 296abb45e83..74f695d301b 100644
--- a/src/libsyntax/syntax.rs
+++ b/src/libsyntax/syntax.rs
@@ -14,7 +14,7 @@
  */
 
 #[link(name = "syntax",
-       vers = "0.8",
+       vers = "0.9-pre",
        uuid = "9311401b-d6ea-4cd9-a1d9-61f89499c645")];
 
 #[license = "MIT/ASL2"];
diff --git a/src/test/run-pass/use.rs b/src/test/run-pass/use.rs
index 3f57f75c078..8ae8dafc23e 100644
--- a/src/test/run-pass/use.rs
+++ b/src/test/run-pass/use.rs
@@ -15,7 +15,7 @@
 #[no_std];
 extern mod std;
 extern mod zed(name = "std");
-extern mod bar(name = "std", vers = "0.8");
+extern mod bar(name = "std", vers = "0.9-pre");
 
 
 use std::str;