diff options
| author | Brian Anderson <banderson@mozilla.com> | 2014-04-03 16:28:46 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2014-04-03 16:28:46 -0700 |
| commit | 0875ffcbfff1b8b432ae09dd435466f34e2c61fa (patch) | |
| tree | d09361df10af0ea15628e14c9b86f504be42ab60 /src/test | |
| parent | bb31cb8d2e4e415cbb71d368918d72902e655e01 (diff) | |
| download | rust-0875ffcbfff1b8b432ae09dd435466f34e2c61fa.tar.gz rust-0875ffcbfff1b8b432ae09dd435466f34e2c61fa.zip | |
Bump version to 0.11-pre
This also changes some of the download links in the documentation to 'nightly'.
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/auxiliary/issue-11908-1.rs | 2 | ||||
| -rw-r--r-- | src/test/auxiliary/issue-11908-2.rs | 2 | ||||
| -rw-r--r-- | src/test/run-make/crate-data-smoke/Makefile | 2 | ||||
| -rw-r--r-- | src/test/run-make/crate-data-smoke/crate.rs | 2 | ||||
| -rw-r--r-- | src/test/run-pass/use.rs | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/src/test/auxiliary/issue-11908-1.rs b/src/test/auxiliary/issue-11908-1.rs index 1fc06f4f682..b0abde795a8 100644 --- a/src/test/auxiliary/issue-11908-1.rs +++ b/src/test/auxiliary/issue-11908-1.rs @@ -10,5 +10,5 @@ // no-prefer-dynamic -#[crate_id = "collections#0.10"]; +#[crate_id = "collections#0.11-pre"]; #[crate_type = "dylib"]; diff --git a/src/test/auxiliary/issue-11908-2.rs b/src/test/auxiliary/issue-11908-2.rs index 45a5bc2c496..612ee3608e9 100644 --- a/src/test/auxiliary/issue-11908-2.rs +++ b/src/test/auxiliary/issue-11908-2.rs @@ -10,5 +10,5 @@ // no-prefer-dynamic -#[crate_id = "collections#0.10"]; +#[crate_id = "collections#0.11-pre"]; #[crate_type = "rlib"]; diff --git a/src/test/run-make/crate-data-smoke/Makefile b/src/test/run-make/crate-data-smoke/Makefile index b849b71d207..f2b246b6437 100644 --- a/src/test/run-make/crate-data-smoke/Makefile +++ b/src/test/run-make/crate-data-smoke/Makefile @@ -1,7 +1,7 @@ -include ../tools.mk all: - [ `$(RUSTC) --crate-id crate.rs` = "foo#0.10" ] + [ `$(RUSTC) --crate-id crate.rs` = "foo#0.11-pre" ] [ `$(RUSTC) --crate-name crate.rs` = "foo" ] [ `$(RUSTC) --crate-file-name crate.rs` = "foo" ] [ `$(RUSTC) --crate-file-name --crate-type=lib --test crate.rs` = "foo" ] diff --git a/src/test/run-make/crate-data-smoke/crate.rs b/src/test/run-make/crate-data-smoke/crate.rs index e2b69ec53e4..b6587aec0ad 100644 --- a/src/test/run-make/crate-data-smoke/crate.rs +++ b/src/test/run-make/crate-data-smoke/crate.rs @@ -8,7 +8,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -#[crate_id = "foo#0.10"]; +#[crate_id = "foo#0.11-pre"]; // 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 diff --git a/src/test/run-pass/use.rs b/src/test/run-pass/use.rs index 468baaa079c..fb021411508 100644 --- a/src/test/run-pass/use.rs +++ b/src/test/run-pass/use.rs @@ -17,7 +17,7 @@ #[no_std]; extern crate std; extern crate zed = "std"; -extern crate bar = "std#0.10"; +extern crate bar = "std#0.11-pre"; use std::str; |
