Bump version to 0.10

This commit is contained in:
Alex Crichton 2014-03-31 13:11:35 -07:00
parent a7e057d402
commit a5681d2590
56 changed files with 68 additions and 68 deletions

View file

@ -10,5 +10,5 @@
// no-prefer-dynamic
#[crate_id = "collections#0.10-pre"];
#[crate_id = "collections#0.10"];
#[crate_type = "dylib"];

View file

@ -10,5 +10,5 @@
// no-prefer-dynamic
#[crate_id = "collections#0.10-pre"];
#[crate_id = "collections#0.10"];
#[crate_type = "rlib"];

View file

@ -1,7 +1,7 @@
-include ../tools.mk
all:
[ `$(RUSTC) --crate-id crate.rs` = "foo#0.10-pre" ]
[ `$(RUSTC) --crate-id crate.rs` = "foo#0.10" ]
[ `$(RUSTC) --crate-name crate.rs` = "foo" ]
[ `$(RUSTC) --crate-file-name crate.rs` = "foo" ]
[ `$(RUSTC) --crate-file-name --crate-type=lib --test crate.rs` = "foo" ]

View file

@ -8,7 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
#[crate_id = "foo#0.10-pre"];
#[crate_id = "foo#0.10"];
// Querying about the crate metadata should *not* parse the entire crate, it
// only needs the crate attributes (which are guaranteed to be at the top) be

View file

@ -17,7 +17,7 @@
#[no_std];
extern crate std;
extern crate zed = "std";
extern crate bar = "std#0.10-pre";
extern crate bar = "std#0.10";
use std::str;