auto merge of #15343 : alexcrichton/rust/0.11.0-release, r=brson

This commit is contained in:
bors 2014-07-04 01:21:19 +00:00
commit 5b11610ced
47 changed files with 88 additions and 80 deletions

View file

@ -10,5 +10,5 @@
// no-prefer-dynamic
#![crate_id = "url#0.11.0-pre"]
#![crate_id = "url#0.11.0"]
#![crate_type = "dylib"]

View file

@ -10,5 +10,5 @@
// no-prefer-dynamic
#![crate_id = "url#0.11.0-pre"]
#![crate_id = "url#0.11.0"]
#![crate_type = "rlib"]

View file

@ -1,7 +1,7 @@
-include ../tools.mk
all:
[ `$(RUSTC) --crate-id crate.rs` = "foo#0.11.0-pre" ]
[ `$(RUSTC) --crate-id crate.rs` = "foo#0.11.0" ]
[ `$(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.11.0-pre"]
#![crate_id = "foo#0.11.0"]
// 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

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