about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGraydon Hoare <graydon@mozilla.com>2012-10-12 16:41:25 -0700
committerGraydon Hoare <graydon@mozilla.com>2012-10-12 16:41:32 -0700
commit57b4d10ff652d3beddae64782c882a07822bac3c (patch)
tree3c2ff0e8de07d84d2a3f33692b1cdce54e4418be
parentfe058374a94c511daf63b7d773f3b4c95e368a2a (diff)
downloadrust-57b4d10ff652d3beddae64782c882a07822bac3c.tar.gz
rust-57b4d10ff652d3beddae64782c882a07822bac3c.zip
bump version to 0.5.
-rw-r--r--Makefile.in2
-rw-r--r--src/cargo/cargo.rc10
-rw-r--r--src/compiletest/compiletest.rc4
-rw-r--r--src/fuzzer/fuzzer.rc6
-rw-r--r--src/libcore/core.rc2
-rw-r--r--src/libcore/core.rs4
-rw-r--r--src/libstd/std.rc4
-rw-r--r--src/libsyntax/syntax.rc6
-rw-r--r--src/rustc/driver/rustc.rs8
-rw-r--r--src/rustc/rustc.rc8
-rw-r--r--src/rustdoc/rustdoc.rc10
-rw-r--r--src/test/run-pass/use.rs2
12 files changed, 33 insertions, 33 deletions
diff --git a/Makefile.in b/Makefile.in
index a7594261c29..383793be6f8 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -132,7 +132,7 @@ LIBSYNTAX_DSYM_GLOB :=$(call CFG_LIB_DSYM_GLOB,syntax)
 
 # version-string calculation
 CFG_GIT_DIR := $(CFG_SRC_DIR).git
-CFG_RELEASE = 0.4
+CFG_RELEASE = 0.5
 CFG_VERSION = $(CFG_RELEASE)
 
 ifneq ($(wildcard $(CFG_GIT)),)
diff --git a/src/cargo/cargo.rc b/src/cargo/cargo.rc
index 17ddacfd7eb..76c15146310 100644
--- a/src/cargo/cargo.rc
+++ b/src/cargo/cargo.rc
@@ -10,7 +10,7 @@
 // End:
 
 #[link(name = "cargo",
-       vers = "0.4",
+       vers = "0.5",
        uuid = "9ff87a04-8fed-4295-9ff8-f99bb802650b",
        url = "https://github.com/mozilla/rust/tree/master/src/cargo")];
 
@@ -27,10 +27,10 @@
 #[allow(deprecated_mode)];
 #[allow(deprecated_pattern)];
 
-extern mod core(vers = "0.4");
-extern mod std(vers = "0.4");
-extern mod rustc(vers = "0.4");
-extern mod syntax(vers = "0.4");
+extern mod core(vers = "0.5");
+extern mod std(vers = "0.5");
+extern mod rustc(vers = "0.5");
+extern mod syntax(vers = "0.5");
 
 use core::*;
 
diff --git a/src/compiletest/compiletest.rc b/src/compiletest/compiletest.rc
index 991d2d2cb0e..db605c3caa4 100644
--- a/src/compiletest/compiletest.rc
+++ b/src/compiletest/compiletest.rc
@@ -8,8 +8,8 @@
 #[allow(deprecated_mode)];
 #[allow(deprecated_pattern)];
 
-extern mod core(vers = "0.4");
-extern mod std(vers = "0.4");
+extern mod core(vers = "0.5");
+extern mod std(vers = "0.5");
 
 use core::*;
 
diff --git a/src/fuzzer/fuzzer.rc b/src/fuzzer/fuzzer.rc
index 640bcccc7a8..c4d37d90434 100644
--- a/src/fuzzer/fuzzer.rc
+++ b/src/fuzzer/fuzzer.rc
@@ -12,9 +12,9 @@
 #[allow(deprecated_mode)];
 #[allow(deprecated_pattern)];
 
-extern mod core(vers = "0.4");
-extern mod std(vers = "0.4");
-extern mod syntax(vers = "0.4");
+extern mod core(vers = "0.5");
+extern mod std(vers = "0.5");
+extern mod syntax(vers = "0.5");
 
 use core::*;
 
diff --git a/src/libcore/core.rc b/src/libcore/core.rc
index 94e6decc4ca..484c5875032 100644
--- a/src/libcore/core.rc
+++ b/src/libcore/core.rc
@@ -25,7 +25,7 @@ Implicitly, all crates behave as if they included the following prologue:
 */
 
 #[link(name = "core",
-       vers = "0.4",
+       vers = "0.5",
        uuid = "c70c24a7-5551-4f73-8e37-380b11d80be8",
        url = "https://github.com/mozilla/rust/tree/master/src/libcore")];
 
diff --git a/src/libcore/core.rs b/src/libcore/core.rs
index 603f19362ee..5ef11a4ad46 100644
--- a/src/libcore/core.rs
+++ b/src/libcore/core.rs
@@ -33,7 +33,7 @@ pub use ops::{Add, Sub, Mul, Div, Modulo, Neg, BitAnd, BitOr, BitXor};
 pub use ops::{Shl, Shr, Index};
 
 #[cfg(test)]
-extern mod coreops(name = "core", vers = "0.4");
+extern mod coreops(name = "core", vers = "0.5");
 
 #[cfg(test)]
 pub use coreops::ops::{Const, Copy, Send, Owned};
@@ -72,6 +72,6 @@ mod core {
 // Similar to above. Some magic to make core testable.
 #[cfg(test)]
 mod std {
-    extern mod std(vers = "0.4");
+    extern mod std(vers = "0.5");
     pub use std::test;
 }
diff --git a/src/libstd/std.rc b/src/libstd/std.rc
index 88ef03aa534..bbffde40948 100644
--- a/src/libstd/std.rc
+++ b/src/libstd/std.rc
@@ -8,7 +8,7 @@ not required in or otherwise suitable for the core library.
 */
 
 #[link(name = "std",
-       vers = "0.4",
+       vers = "0.5",
        uuid = "122bed0b-c19b-4b82-b0b7-7ae8aead7297",
        url = "https://github.com/mozilla/rust/tree/master/src/libstd")];
 
@@ -25,7 +25,7 @@ not required in or otherwise suitable for the core library.
 #[allow(deprecated_mode)];
 #[forbid(deprecated_pattern)];
 
-extern mod core(vers = "0.4");
+extern mod core(vers = "0.5");
 use core::*;
 
 // General io and system-services modules
diff --git a/src/libsyntax/syntax.rc b/src/libsyntax/syntax.rc
index 93ed5bd471b..7c73deed1a9 100644
--- a/src/libsyntax/syntax.rc
+++ b/src/libsyntax/syntax.rc
@@ -1,5 +1,5 @@
 #[link(name = "syntax",
-       vers = "0.4",
+       vers = "0.5",
        uuid = "9311401b-d6ea-4cd9-a1d9-61f89499c645")];
 
 
@@ -16,8 +16,8 @@
 #[allow(deprecated_mode)];
 #[allow(deprecated_pattern)];
 
-extern mod core(vers = "0.4");
-extern mod std(vers = "0.4");
+extern mod core(vers = "0.5");
+extern mod std(vers = "0.5");
 
 use core::*;
 
diff --git a/src/rustc/driver/rustc.rs b/src/rustc/driver/rustc.rs
index e6a9d726f6d..5833723ec10 100644
--- a/src/rustc/driver/rustc.rs
+++ b/src/rustc/driver/rustc.rs
@@ -3,10 +3,10 @@
 #[allow(non_camel_case_types)];
 #[legacy_modes];
 
-extern mod core(vers = "0.4");
-extern mod std(vers = "0.4");
-extern mod rustc(vers = "0.4");
-extern mod syntax(vers = "0.4");
+extern mod core(vers = "0.5");
+extern mod std(vers = "0.5");
+extern mod rustc(vers = "0.5");
+extern mod syntax(vers = "0.5");
 
 use core::*;
 
diff --git a/src/rustc/rustc.rc b/src/rustc/rustc.rc
index dad27b706e6..5d1b217e623 100644
--- a/src/rustc/rustc.rc
+++ b/src/rustc/rustc.rc
@@ -1,7 +1,7 @@
 // -*- rust -*-
 
 #[link(name = "rustc",
-       vers = "0.4",
+       vers = "0.5",
        uuid = "0ce89b41-2f92-459e-bbc1-8f5fe32f16cf",
        url = "https://github.com/mozilla/rust/tree/master/src/rustc")];
 
@@ -19,9 +19,9 @@
 #[allow(deprecated_mode)];
 #[allow(deprecated_pattern)];
 
-extern mod core(vers = "0.4");
-extern mod std(vers = "0.4");
-extern mod syntax(vers = "0.4");
+extern mod core(vers = "0.5");
+extern mod std(vers = "0.5");
+extern mod syntax(vers = "0.5");
 
 use core::*;
 
diff --git a/src/rustdoc/rustdoc.rc b/src/rustdoc/rustdoc.rc
index f8714b0e9ba..e8f0ec00545 100644
--- a/src/rustdoc/rustdoc.rc
+++ b/src/rustdoc/rustdoc.rc
@@ -1,7 +1,7 @@
 //! Rustdoc - The Rust documentation generator
 
 #[link(name = "rustdoc",
-       vers = "0.4",
+       vers = "0.5",
        uuid = "f8abd014-b281-484d-a0c3-26e3de8e2412",
        url = "https://github.com/mozilla/rust/tree/master/src/rustdoc")];
 
@@ -18,10 +18,10 @@
 #[allow(deprecated_mode)];
 #[allow(deprecated_pattern)];
 
-extern mod core(vers = "0.4");
-extern mod std(vers = "0.4");
-extern mod rustc(vers = "0.4");
-extern mod syntax(vers = "0.4");
+extern mod core(vers = "0.5");
+extern mod std(vers = "0.5");
+extern mod rustc(vers = "0.5");
+extern mod syntax(vers = "0.5");
 
 use core::*;
 use std::par;
diff --git a/src/test/run-pass/use.rs b/src/test/run-pass/use.rs
index 10c9fcae8e7..850adcf6746 100644
--- a/src/test/run-pass/use.rs
+++ b/src/test/run-pass/use.rs
@@ -1,7 +1,7 @@
 #[no_core];
 extern mod core;
 extern mod zed(name = "core");
-extern mod bar(name = "core", vers = "0.4");
+extern mod bar(name = "core", vers = "0.5");
 
 
 use core::str;