Skip to content

Register new snapshots #11699

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 21, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/libextra/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"];
Expand Down
3 changes: 1 addition & 2 deletions src/libgreen/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"];
Expand Down
3 changes: 1 addition & 2 deletions src/librustc/front/std_inject.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
3 changes: 1 addition & 2 deletions src/librustuv/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"];
Expand Down
3 changes: 1 addition & 2 deletions src/libstd/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"];
Expand Down
8 changes: 8 additions & 0 deletions src/snapshots.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/test/run-pass/use.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down