about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-01-20 19:42:50 -0800
committerAlex Crichton <alex@alexcrichton.com>2014-01-20 19:45:38 -0800
commitcb12de14c92526930aa9c55e660fe2f7350fb56a (patch)
tree3fb355d2eb9038d49516ca4c03a24080d52b66da
parent94236fc078474a48fe516394b472027d6b7f66d4 (diff)
downloadrust-cb12de14c92526930aa9c55e660fe2f7350fb56a.tar.gz
rust-cb12de14c92526930aa9c55e660fe2f7350fb56a.zip
Register new snapshots
Upgrade the version to 0.10-pre
-rw-r--r--src/libextra/lib.rs3
-rw-r--r--src/libgreen/lib.rs3
-rw-r--r--src/librustc/front/std_inject.rs3
-rw-r--r--src/librustuv/lib.rs3
-rw-r--r--src/libstd/lib.rs3
-rw-r--r--src/snapshots.txt8
-rw-r--r--src/test/run-pass/use.rs2
7 files changed, 14 insertions, 11 deletions
diff --git a/src/libextra/lib.rs b/src/libextra/lib.rs
index b3dda5cbc21..fc0cc045175 100644
--- a/src/libextra/lib.rs
+++ b/src/libextra/lib.rs
@@ -20,8 +20,7 @@ Rust extras are part of the standard Rust distribution.
 
 */
 
-// NOTE: upgrade to 0.10-pre after the next snapshot
-#[crate_id = "extra#0.9"];
+#[crate_id = "extra#0.10-pre"];
 #[comment = "Rust extras"];
 #[license = "MIT/ASL2"];
 #[crate_type = "rlib"];
diff --git a/src/libgreen/lib.rs b/src/libgreen/lib.rs
index 990ca9f80b5..d746d5012c4 100644
--- a/src/libgreen/lib.rs
+++ b/src/libgreen/lib.rs
@@ -17,8 +17,7 @@
 //! This can be optionally linked in to rust programs in order to provide M:N
 //! functionality inside of 1:1 programs.
 
-// NOTE: Change to 0.10-pre after snapshot
-#[crate_id = "green#0.9"];
+#[crate_id = "green#0.10-pre"];
 #[license = "MIT/ASL2"];
 #[crate_type = "rlib"];
 #[crate_type = "dylib"];
diff --git a/src/librustc/front/std_inject.rs b/src/librustc/front/std_inject.rs
index c1c31dc310e..6fa54061e34 100644
--- a/src/librustc/front/std_inject.rs
+++ b/src/librustc/front/std_inject.rs
@@ -21,8 +21,7 @@ use syntax::fold;
 use syntax::opt_vec;
 use syntax::util::small_vector::SmallVector;
 
-// NOTE: upgrade to 0.10-pre after the next snapshot
-pub static VERSION: &'static str = "0.9";
+pub static VERSION: &'static str = "0.10-pre";
 
 pub fn maybe_inject_libstd_ref(sess: Session, crate: ast::Crate)
                                -> ast::Crate {
diff --git a/src/librustuv/lib.rs b/src/librustuv/lib.rs
index 3353db63e68..36305c26682 100644
--- a/src/librustuv/lib.rs
+++ b/src/librustuv/lib.rs
@@ -34,8 +34,7 @@ via `close` and `delete` methods.
 
 */
 
-// NOTE: Change to 0.10-pre after snapshot
-#[crate_id = "rustuv#0.9"];
+#[crate_id = "rustuv#0.10-pre"];
 #[license = "MIT/ASL2"];
 #[crate_type = "rlib"];
 #[crate_type = "dylib"];
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index b99de70ea07..f4f83892a9c 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -43,8 +43,7 @@
 //!
 //!     use std::prelude::*;
 
-// NOTE: Upgrade to 0.10-pre after snapshot
-#[crate_id = "std#0.9"];
+#[crate_id = "std#0.10-pre"];
 #[comment = "The Rust standard library"];
 #[license = "MIT/ASL2"];
 #[crate_type = "rlib"];
diff --git a/src/snapshots.txt b/src/snapshots.txt
index 368b2a0fd38..c60fea07a5e 100644
--- a/src/snapshots.txt
+++ b/src/snapshots.txt
@@ -1,3 +1,11 @@
+S 2014-01-20 b6400f9
+  freebsd-x86_64 22b1774700781d190061e66666fdc5f9e9c414ee
+  linux-i386 ca6d66dcbe90806e50a46037c3102cffecce14ed
+  linux-x86_64 ad8b455804ff46aa721db9453438591da4c35b48
+  macos-i386 3e38ca0328422469ba5f25544ca2a9770cff438d
+  macos-x86_64 6458d3b46a951da62c20dd5b587d44333402e30b
+  winnt-i386 2bb2a2d7d834fd98ac23f0afe29f0fc3d6098703
+
 S 2014-01-14 29070c3
   freebsd-x86_64 c2fb6e6313a9f1d41df810fcf1ae354858a8bf76
   linux-i386 6437656b81cf9f3d1377523c1e36d5cf06b2d645
diff --git a/src/test/run-pass/use.rs b/src/test/run-pass/use.rs
index 0adc26b52fd..92b738995e6 100644
--- a/src/test/run-pass/use.rs
+++ b/src/test/run-pass/use.rs
@@ -17,7 +17,7 @@
 #[no_std];
 extern mod std;
 extern mod zed = "std";
-extern mod bar = "std#0.9";
+extern mod bar = "std#0.10-pre";
 
 
 use std::str;