From fb30dff18446216bd0ef96125ae83e9f7a0b9341 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Sat, 5 Jul 2014 14:09:56 -0700 Subject: [PATCH] Bump version to 0.12.0-pre --- man/rustc.1 | 2 +- man/rustdoc.1 | 2 +- mk/main.mk | 4 ++-- src/doc/README.md | 4 ++-- src/doc/guide.md | 2 +- src/doc/po/ja/complement-cheatsheet.md.po | 2 +- src/doc/po/ja/complement-lang-faq.md.po | 2 +- src/doc/po/ja/complement-project-faq.md.po | 2 +- src/doc/po/ja/complement-usage-faq.md.po | 2 +- src/doc/po/ja/guide-conditions.md.po | 2 +- src/doc/po/ja/guide-container.md.po | 2 +- src/doc/po/ja/guide-ffi.md.po | 2 +- src/doc/po/ja/guide-lifetimes.md.po | 2 +- src/doc/po/ja/guide-macros.md.po | 2 +- src/doc/po/ja/guide-pointers.md.po | 2 +- src/doc/po/ja/guide-runtime.md.po | 2 +- src/doc/po/ja/guide-tasks.md.po | 2 +- src/doc/po/ja/guide-testing.md.po | 2 +- src/doc/po/ja/index.md.po | 2 +- src/doc/po/ja/rustdoc.md.po | 2 +- src/etc/kate/rust.xml | 2 +- src/liballoc/lib.rs | 2 +- src/libarena/lib.rs | 4 ++-- src/libcollections/lib.rs | 4 ++-- src/libcore/lib.rs | 4 ++-- src/libdebug/lib.rs | 4 ++-- src/libflate/lib.rs | 4 ++-- src/libfmt_macros/lib.rs | 2 +- src/libfourcc/lib.rs | 4 ++-- src/libgetopts/lib.rs | 4 ++-- src/libglob/lib.rs | 4 ++-- src/libgraphviz/lib.rs | 4 ++-- src/libgreen/lib.rs | 4 ++-- src/libhexfloat/lib.rs | 4 ++-- src/liblibc/lib.rs | 4 ++-- src/liblog/lib.rs | 4 ++-- src/libnative/lib.rs | 4 ++-- src/libnum/lib.rs | 4 ++-- src/librand/lib.rs | 4 ++-- src/libregex/lib.rs | 4 ++-- src/libregex_macros/lib.rs | 4 ++-- src/librlibc/lib.rs | 4 ++-- src/librustc/front/std_inject.rs | 2 +- src/librustc/lib.rs | 4 ++-- src/librustdoc/lib.rs | 2 +- src/librustrt/lib.rs | 4 ++-- src/librustuv/lib.rs | 4 ++-- src/libsemver/lib.rs | 4 ++-- src/libserialize/lib.rs | 4 ++-- src/libstd/lib.rs | 4 ++-- src/libsync/lib.rs | 4 ++-- src/libsyntax/lib.rs | 4 ++-- src/libterm/lib.rs | 4 ++-- src/libtest/lib.rs | 4 ++-- src/libtime/lib.rs | 4 ++-- src/liburl/lib.rs | 4 ++-- src/libuuid/lib.rs | 4 ++-- src/test/auxiliary/issue-11908-1.rs | 2 +- src/test/auxiliary/issue-11908-2.rs | 2 +- src/test/run-make/crate-data-smoke/Makefile | 2 +- src/test/run-make/crate-data-smoke/crate.rs | 2 +- src/test/run-pass/use.rs | 2 +- 62 files changed, 96 insertions(+), 96 deletions(-) diff --git a/man/rustc.1 b/man/rustc.1 index df65cf7bb37ff..1c07baa867dbe 100644 --- a/man/rustc.1 +++ b/man/rustc.1 @@ -1,4 +1,4 @@ -.TH RUSTC "1" "March 2014" "rustc 0.11.0" "User Commands" +.TH RUSTC "1" "March 2014" "rustc 0.12.0-pre" "User Commands" .SH NAME rustc \- The Rust compiler .SH SYNOPSIS diff --git a/man/rustdoc.1 b/man/rustdoc.1 index 03414ca163ec2..12e776b98618e 100644 --- a/man/rustdoc.1 +++ b/man/rustdoc.1 @@ -1,4 +1,4 @@ -.TH RUSTDOC "1" "March 2014" "rustdoc 0.11.0" "User Commands" +.TH RUSTDOC "1" "March 2014" "rustdoc 0.12.0-pre" "User Commands" .SH NAME rustdoc \- generate documentation from Rust source code .SH SYNOPSIS diff --git a/mk/main.mk b/mk/main.mk index c4be89033a648..883e19d0b3079 100644 --- a/mk/main.mk +++ b/mk/main.mk @@ -13,8 +13,8 @@ ###################################################################### # The version number -CFG_RELEASE_NUM=0.11.0 -CFG_RELEASE_LABEL= +CFG_RELEASE_NUM=0.12.0 +CFG_RELEASE_LABEL=-pre ifndef CFG_ENABLE_NIGHTLY # This is the normal version string diff --git a/src/doc/README.md b/src/doc/README.md index f8b0f07d19afb..c2fa93d14abc8 100644 --- a/src/doc/README.md +++ b/src/doc/README.md @@ -53,12 +53,12 @@ To generate .pot and .po files, do something like: ~~~~ po4a --copyright-holder="The Rust Project Developers" \ --package-name="Rust" \ - --package-version="0.11.0" \ + --package-version="0.12.0-pre" \ -M UTF-8 -L UTF-8 \ src/doc/po4a.conf ~~~~ -(the version number must be changed if it is not 0.11.0 now.) +(the version number must be changed if it is not 0.12.0-pre now.) Now you can translate documents with .po files, commonly used with gettext. If you are not familiar with gettext-based translation, please read the online diff --git a/src/doc/guide.md b/src/doc/guide.md index ab480745b689a..255c8227d9552 100644 --- a/src/doc/guide.md +++ b/src/doc/guide.md @@ -90,7 +90,7 @@ $ rustc --version You should see some output that looks something like this: ```{ignore} -rustc 0.11.0-pre (443a1cd 2014-06-08 14:56:52 -0700) +rustc 0.12.0-pre (443a1cd 2014-06-08 14:56:52 -0700) host: x86_64-unknown-linux-gnu ``` diff --git a/src/doc/po/ja/complement-cheatsheet.md.po b/src/doc/po/ja/complement-cheatsheet.md.po index 3b7bb2e740d46..d385f8234fa1d 100644 --- a/src/doc/po/ja/complement-cheatsheet.md.po +++ b/src/doc/po/ja/complement-cheatsheet.md.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Rust 0.11.0-pre\n" +"Project-Id-Version: Rust 0.12.0-pre\n" "POT-Creation-Date: 2014-02-03 08:13+0900\n" "PO-Revision-Date: 2014-01-13 12:01+0900\n" "Last-Translator: Automatically generated\n" diff --git a/src/doc/po/ja/complement-lang-faq.md.po b/src/doc/po/ja/complement-lang-faq.md.po index f28abcf1d524f..6668975473d38 100644 --- a/src/doc/po/ja/complement-lang-faq.md.po +++ b/src/doc/po/ja/complement-lang-faq.md.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Rust 0.11.0-pre\n" +"Project-Id-Version: Rust 0.12.0-pre\n" "POT-Creation-Date: 2014-02-03 08:13+0900\n" "PO-Revision-Date: 2014-01-13 12:01+0900\n" "Last-Translator: Automatically generated\n" diff --git a/src/doc/po/ja/complement-project-faq.md.po b/src/doc/po/ja/complement-project-faq.md.po index 0361c67b9dc36..3e10a3bc956d0 100644 --- a/src/doc/po/ja/complement-project-faq.md.po +++ b/src/doc/po/ja/complement-project-faq.md.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Rust 0.11.0-pre\n" +"Project-Id-Version: Rust 0.12.0-pre\n" "POT-Creation-Date: 2014-02-03 08:13+0900\n" "PO-Revision-Date: 2014-01-13 12:01+0900\n" "Last-Translator: Automatically generated\n" diff --git a/src/doc/po/ja/complement-usage-faq.md.po b/src/doc/po/ja/complement-usage-faq.md.po index 819e12ccd13a7..c068b630ca7e4 100644 --- a/src/doc/po/ja/complement-usage-faq.md.po +++ b/src/doc/po/ja/complement-usage-faq.md.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Rust 0.11.0-pre\n" +"Project-Id-Version: Rust 0.12.0-pre\n" "POT-Creation-Date: 2014-02-03 08:13+0900\n" "PO-Revision-Date: 2014-02-03 08:13+0900\n" "Last-Translator: Automatically generated\n" diff --git a/src/doc/po/ja/guide-conditions.md.po b/src/doc/po/ja/guide-conditions.md.po index 69f5ea1c73356..089ad6d60a9cb 100644 --- a/src/doc/po/ja/guide-conditions.md.po +++ b/src/doc/po/ja/guide-conditions.md.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Rust 0.11.0-pre\n" +"Project-Id-Version: Rust 0.12.0-pre\n" "POT-Creation-Date: 2014-02-03 08:13+0900\n" "PO-Revision-Date: 2014-01-13 12:01+0900\n" "Last-Translator: Automatically generated\n" diff --git a/src/doc/po/ja/guide-container.md.po b/src/doc/po/ja/guide-container.md.po index d20ad95687304..399443b6e21d1 100644 --- a/src/doc/po/ja/guide-container.md.po +++ b/src/doc/po/ja/guide-container.md.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Rust 0.11.0-pre\n" +"Project-Id-Version: Rust 0.12.0-pre\n" "POT-Creation-Date: 2014-02-03 08:13+0900\n" "PO-Revision-Date: 2014-01-13 12:01+0900\n" "Last-Translator: Automatically generated\n" diff --git a/src/doc/po/ja/guide-ffi.md.po b/src/doc/po/ja/guide-ffi.md.po index fe7d1d911efdd..08089f30d2458 100644 --- a/src/doc/po/ja/guide-ffi.md.po +++ b/src/doc/po/ja/guide-ffi.md.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Rust 0.11.0-pre\n" +"Project-Id-Version: Rust 0.12.0-pre\n" "POT-Creation-Date: 2014-02-03 08:13+0900\n" "PO-Revision-Date: 2014-01-13 12:01+0900\n" "Last-Translator: Automatically generated\n" diff --git a/src/doc/po/ja/guide-lifetimes.md.po b/src/doc/po/ja/guide-lifetimes.md.po index 44984c4a25fb7..b5c0761324d25 100644 --- a/src/doc/po/ja/guide-lifetimes.md.po +++ b/src/doc/po/ja/guide-lifetimes.md.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Rust 0.11.0-pre\n" +"Project-Id-Version: Rust 0.12.0-pre\n" "POT-Creation-Date: 2014-02-03 08:13+0900\n" "PO-Revision-Date: 2014-01-13 12:01+0900\n" "Last-Translator: Automatically generated\n" diff --git a/src/doc/po/ja/guide-macros.md.po b/src/doc/po/ja/guide-macros.md.po index 39d71dafd8c9f..bf35bcd4ca68c 100644 --- a/src/doc/po/ja/guide-macros.md.po +++ b/src/doc/po/ja/guide-macros.md.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Rust 0.11.0-pre\n" +"Project-Id-Version: Rust 0.12.0-pre\n" "POT-Creation-Date: 2014-02-03 08:13+0900\n" "PO-Revision-Date: 2014-01-13 12:01+0900\n" "Last-Translator: Automatically generated\n" diff --git a/src/doc/po/ja/guide-pointers.md.po b/src/doc/po/ja/guide-pointers.md.po index f1005caedd5c1..0c0ca5e73a1dd 100644 --- a/src/doc/po/ja/guide-pointers.md.po +++ b/src/doc/po/ja/guide-pointers.md.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Rust 0.11.0-pre\n" +"Project-Id-Version: Rust 0.12.0-pre\n" "POT-Creation-Date: 2014-02-03 08:13+0900\n" "PO-Revision-Date: 2014-01-13 12:01+0900\n" "Last-Translator: Automatically generated\n" diff --git a/src/doc/po/ja/guide-runtime.md.po b/src/doc/po/ja/guide-runtime.md.po index 216a854db2a26..1cfdfad28367d 100644 --- a/src/doc/po/ja/guide-runtime.md.po +++ b/src/doc/po/ja/guide-runtime.md.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Rust 0.11.0-pre\n" +"Project-Id-Version: Rust 0.12.0-pre\n" "POT-Creation-Date: 2014-02-03 08:13+0900\n" "PO-Revision-Date: 2014-02-03 08:13+0900\n" "Last-Translator: Automatically generated\n" diff --git a/src/doc/po/ja/guide-tasks.md.po b/src/doc/po/ja/guide-tasks.md.po index 480d1351e5643..bb5252cb7375c 100644 --- a/src/doc/po/ja/guide-tasks.md.po +++ b/src/doc/po/ja/guide-tasks.md.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Rust 0.11.0-pre\n" +"Project-Id-Version: Rust 0.12.0-pre\n" "POT-Creation-Date: 2014-02-03 08:13+0900\n" "PO-Revision-Date: 2014-01-13 12:01+0900\n" "Last-Translator: Automatically generated\n" diff --git a/src/doc/po/ja/guide-testing.md.po b/src/doc/po/ja/guide-testing.md.po index 55a9e00f54d27..9025ae1505467 100644 --- a/src/doc/po/ja/guide-testing.md.po +++ b/src/doc/po/ja/guide-testing.md.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Rust 0.11.0-pre\n" +"Project-Id-Version: Rust 0.12.0-pre\n" "POT-Creation-Date: 2014-02-03 08:13+0900\n" "PO-Revision-Date: 2014-01-13 12:01+0900\n" "Last-Translator: Automatically generated\n" diff --git a/src/doc/po/ja/index.md.po b/src/doc/po/ja/index.md.po index 6a2e512da2654..4e226cbfe37e2 100644 --- a/src/doc/po/ja/index.md.po +++ b/src/doc/po/ja/index.md.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Rust 0.11.0-pre\n" +"Project-Id-Version: Rust 0.12.0-pre\n" "POT-Creation-Date: 2014-02-03 08:13+0900\n" "PO-Revision-Date: 2014-01-14 21:02+0900\n" "Last-Translator: Automatically generated\n" diff --git a/src/doc/po/ja/rustdoc.md.po b/src/doc/po/ja/rustdoc.md.po index eaf954333152e..e2bc4716d7064 100644 --- a/src/doc/po/ja/rustdoc.md.po +++ b/src/doc/po/ja/rustdoc.md.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Rust 0.11.0-pre\n" +"Project-Id-Version: Rust 0.12.0-pre\n" "POT-Creation-Date: 2014-02-03 08:13+0900\n" "PO-Revision-Date: 2014-01-13 12:01+0900\n" "Last-Translator: Automatically generated\n" diff --git a/src/etc/kate/rust.xml b/src/etc/kate/rust.xml index deb713ac1ae01..f2f54d9d30703 100644 --- a/src/etc/kate/rust.xml +++ b/src/etc/kate/rust.xml @@ -7,7 +7,7 @@ ]> - + fn diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs index 26b8ccaf57371..64afd66d31585 100644 --- a/src/liballoc/lib.rs +++ b/src/liballoc/lib.rs @@ -60,7 +60,7 @@ //! by libc malloc/free. The `libc_heap` module is defined to be wired up to //! the system malloc/free. -#![crate_id = "alloc#0.11.0"] +#![crate_id = "alloc#0.12.0-pre"] #![experimental] #![license = "MIT/ASL2"] #![crate_type = "rlib"] diff --git a/src/libarena/lib.rs b/src/libarena/lib.rs index 917de94470b35..35a7894cd0567 100644 --- a/src/libarena/lib.rs +++ b/src/libarena/lib.rs @@ -19,14 +19,14 @@ //! arena but can only hold objects of a single type, and Arena, which is a //! more complex, slower Arena which can hold objects of any type. -#![crate_id = "arena#0.11.0"] +#![crate_id = "arena#0.12.0-pre"] #![experimental] #![crate_type = "rlib"] #![crate_type = "dylib"] #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/")] + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/")] #![feature(unsafe_destructor)] #![allow(missing_doc)] diff --git a/src/libcollections/lib.rs b/src/libcollections/lib.rs index c698b35c84811..f565eeac7ce5e 100644 --- a/src/libcollections/lib.rs +++ b/src/libcollections/lib.rs @@ -12,13 +12,13 @@ * Collection types. */ -#![crate_id = "collections#0.11.0"] +#![crate_id = "collections#0.12.0-pre"] #![experimental] #![crate_type = "rlib"] #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/", + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/", html_playground_url = "http://play.rust-lang.org/")] #![feature(macro_rules, managed_boxes, default_type_params, phase, globs)] diff --git a/src/libcore/lib.rs b/src/libcore/lib.rs index 5e238aeae3271..b0280ceb20c64 100644 --- a/src/libcore/lib.rs +++ b/src/libcore/lib.rs @@ -47,13 +47,13 @@ // Since libcore defines many fundamental lang items, all tests live in a // separate crate, libcoretest, to avoid bizarre issues. -#![crate_id = "core#0.11.0"] +#![crate_id = "core#0.12.0-pre"] #![experimental] #![license = "MIT/ASL2"] #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/", + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/", html_playground_url = "http://play.rust-lang.org/")] #![no_std] diff --git a/src/libdebug/lib.rs b/src/libdebug/lib.rs index 850002b595e91..7f9f00f040d43 100644 --- a/src/libdebug/lib.rs +++ b/src/libdebug/lib.rs @@ -16,14 +16,14 @@ //! Additionally, it is not guaranteed that functionality such as reflection //! will persist into the future. -#![crate_id = "debug#0.11.0"] +#![crate_id = "debug#0.12.0-pre"] #![experimental] #![license = "MIT/ASL2"] #![crate_type = "rlib"] #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/")] + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/")] #![experimental] #![feature(managed_boxes, macro_rules)] #![allow(experimental)] diff --git a/src/libflate/lib.rs b/src/libflate/lib.rs index d944818abc56a..2c2a0ae8bbaa5 100644 --- a/src/libflate/lib.rs +++ b/src/libflate/lib.rs @@ -18,14 +18,14 @@ Simple [DEFLATE][def]-based compression. This is a wrapper around the */ -#![crate_id = "flate#0.11.0"] +#![crate_id = "flate#0.12.0-pre"] #![experimental] #![crate_type = "rlib"] #![crate_type = "dylib"] #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/")] + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/")] #![feature(phase)] #[cfg(test)] #[phase(plugin, link)] extern crate log; diff --git a/src/libfmt_macros/lib.rs b/src/libfmt_macros/lib.rs index b9c0fcce52da7..2cd551b5c54b2 100644 --- a/src/libfmt_macros/lib.rs +++ b/src/libfmt_macros/lib.rs @@ -14,7 +14,7 @@ //! Parsing does not happen at runtime: structures of `std::fmt::rt` are //! generated instead. -#![crate_id = "fmt_macros#0.11.0"] +#![crate_id = "fmt_macros#0.12.0-pre"] #![experimental] #![license = "MIT/ASL2"] #![crate_type = "rlib"] diff --git a/src/libfourcc/lib.rs b/src/libfourcc/lib.rs index e854cd3069c8a..a1ca5f04e26c9 100644 --- a/src/libfourcc/lib.rs +++ b/src/libfourcc/lib.rs @@ -39,14 +39,14 @@ fn main() { */ -#![crate_id = "fourcc#0.11.0"] +#![crate_id = "fourcc#0.12.0-pre"] #![experimental] #![crate_type = "rlib"] #![crate_type = "dylib"] #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/")] + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/")] #![feature(plugin_registrar, managed_boxes)] diff --git a/src/libgetopts/lib.rs b/src/libgetopts/lib.rs index 00e6df9ffbbb2..3cab06b9d0b99 100644 --- a/src/libgetopts/lib.rs +++ b/src/libgetopts/lib.rs @@ -76,14 +76,14 @@ //! } //! ~~~ -#![crate_id = "getopts#0.11.0"] +#![crate_id = "getopts#0.12.0-pre"] #![experimental] #![crate_type = "rlib"] #![crate_type = "dylib"] #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/", + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/", html_playground_url = "http://play.rust-lang.org/")] #![feature(globs, phase)] #![deny(missing_doc)] diff --git a/src/libglob/lib.rs b/src/libglob/lib.rs index 3cb21601e331d..535c7b52b8100 100644 --- a/src/libglob/lib.rs +++ b/src/libglob/lib.rs @@ -23,14 +23,14 @@ * `glob`/`fnmatch` functions. */ -#![crate_id = "glob#0.11.0"] +#![crate_id = "glob#0.12.0-pre"] #![experimental] #![crate_type = "rlib"] #![crate_type = "dylib"] #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/", + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/", html_playground_url = "http://play.rust-lang.org/")] use std::cell::Cell; diff --git a/src/libgraphviz/lib.rs b/src/libgraphviz/lib.rs index 16298f51ea96b..5866334a81cc2 100644 --- a/src/libgraphviz/lib.rs +++ b/src/libgraphviz/lib.rs @@ -266,14 +266,14 @@ pub fn main() { */ -#![crate_id = "graphviz#0.11.0"] +#![crate_id = "graphviz#0.12.0-pre"] #![experimental] #![crate_type = "rlib"] #![crate_type = "dylib"] #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/")] + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/")] #![experimental] diff --git a/src/libgreen/lib.rs b/src/libgreen/lib.rs index 1b34679b0a18a..fd116960db064 100644 --- a/src/libgreen/lib.rs +++ b/src/libgreen/lib.rs @@ -197,14 +197,14 @@ //! pool.shutdown(); //! ``` -#![crate_id = "green#0.11.0"] +#![crate_id = "green#0.12.0-pre"] #![experimental] #![license = "MIT/ASL2"] #![crate_type = "rlib"] #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/", + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/", html_playground_url = "http://play.rust-lang.org/")] // NB this does *not* include globs, please keep it that way. diff --git a/src/libhexfloat/lib.rs b/src/libhexfloat/lib.rs index 64538bd2212a4..5ac0777a3aa07 100644 --- a/src/libhexfloat/lib.rs +++ b/src/libhexfloat/lib.rs @@ -36,14 +36,14 @@ fn main() { */ -#![crate_id = "hexfloat#0.11.0"] +#![crate_id = "hexfloat#0.12.0-pre"] #![experimental] #![crate_type = "rlib"] #![crate_type = "dylib"] #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/")] + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/")] #![feature(plugin_registrar, managed_boxes)] extern crate syntax; diff --git a/src/liblibc/lib.rs b/src/liblibc/lib.rs index 81e50889952ec..cf6a9c941d4ed 100644 --- a/src/liblibc/lib.rs +++ b/src/liblibc/lib.rs @@ -9,14 +9,14 @@ // except according to those terms. #![feature(globs)] -#![crate_id = "libc#0.11.0"] +#![crate_id = "libc#0.12.0-pre"] #![experimental] #![no_std] // we don't need std, and we can't have std, since it doesn't exist // yet. std depends on us. #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/", + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/", html_playground_url = "http://play.rust-lang.org/")] /*! diff --git a/src/liblog/lib.rs b/src/liblog/lib.rs index 6216e79fe8418..93a347f60016d 100644 --- a/src/liblog/lib.rs +++ b/src/liblog/lib.rs @@ -105,14 +105,14 @@ if logging is disabled, none of the components of the log will be executed. */ -#![crate_id = "log#0.11.0"] +#![crate_id = "log#0.12.0-pre"] #![experimental] #![license = "MIT/ASL2"] #![crate_type = "rlib"] #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/", + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/", html_playground_url = "http://play.rust-lang.org/")] #![feature(macro_rules)] diff --git a/src/libnative/lib.rs b/src/libnative/lib.rs index 2e43ddba6449c..3b33252264d2c 100644 --- a/src/libnative/lib.rs +++ b/src/libnative/lib.rs @@ -46,14 +46,14 @@ //! } //! ``` -#![crate_id = "native#0.11.0"] +#![crate_id = "native#0.12.0-pre"] #![experimental] #![license = "MIT/ASL2"] #![crate_type = "rlib"] #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/")] + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/")] #![deny(unused_result, unused_must_use)] #![allow(non_camel_case_types, deprecated)] diff --git a/src/libnum/lib.rs b/src/libnum/lib.rs index db0cd7f256724..040c914340048 100644 --- a/src/libnum/lib.rs +++ b/src/libnum/lib.rs @@ -44,14 +44,14 @@ #![feature(macro_rules)] -#![crate_id = "num#0.11.0"] +#![crate_id = "num#0.12.0-pre"] #![experimental] #![crate_type = "rlib"] #![crate_type = "dylib"] #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/", + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/", html_playground_url = "http://play.rust-lang.org/")] #![allow(deprecated)] // from_str_radix diff --git a/src/librand/lib.rs b/src/librand/lib.rs index 593b9785d475a..b28623c287c89 100644 --- a/src/librand/lib.rs +++ b/src/librand/lib.rs @@ -16,12 +16,12 @@ //! is not recommended to use this library directly, but rather the official //! interface through `std::rand`. -#![crate_id = "rand#0.11.0"] +#![crate_id = "rand#0.12.0-pre"] #![license = "MIT/ASL2"] #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/", + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/", html_playground_url = "http://play.rust-lang.org/")] #![feature(macro_rules, phase, globs)] diff --git a/src/libregex/lib.rs b/src/libregex/lib.rs index b69c4471267bb..1a0dfdfdd3006 100644 --- a/src/libregex/lib.rs +++ b/src/libregex/lib.rs @@ -353,14 +353,14 @@ //! characters in the search text and `m` is the number of instructions in a //! compiled expression. -#![crate_id = "regex#0.11.0"] +#![crate_id = "regex#0.12.0-pre"] #![crate_type = "rlib"] #![crate_type = "dylib"] #![experimental] #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/", + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/", html_playground_url = "http://play.rust-lang.org/")] #![feature(macro_rules, phase)] diff --git a/src/libregex_macros/lib.rs b/src/libregex_macros/lib.rs index e699816347ca3..7a0f35df75128 100644 --- a/src/libregex_macros/lib.rs +++ b/src/libregex_macros/lib.rs @@ -11,13 +11,13 @@ //! This crate provides the `regex!` macro. Its use is documented in the //! `regex` crate. -#![crate_id = "regex_macros#0.11.0"] +#![crate_id = "regex_macros#0.12.0-pre"] #![crate_type = "dylib"] #![experimental] #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/")] + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/")] #![feature(plugin_registrar, managed_boxes, quote)] diff --git a/src/librlibc/lib.rs b/src/librlibc/lib.rs index c653e1ca07787..98bcc505dc6ac 100644 --- a/src/librlibc/lib.rs +++ b/src/librlibc/lib.rs @@ -20,12 +20,12 @@ //! necessary. It is an error to include this library when also linking with //! the system libc library. -#![crate_id = "rlibc#0.11.0"] +#![crate_id = "rlibc#0.12.0-pre"] #![license = "MIT/ASL2"] #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/")] + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/")] #![feature(intrinsics)] #![no_std] diff --git a/src/librustc/front/std_inject.rs b/src/librustc/front/std_inject.rs index 54ba9db570e63..4f1ff18c6749f 100644 --- a/src/librustc/front/std_inject.rs +++ b/src/librustc/front/std_inject.rs @@ -25,7 +25,7 @@ use syntax::util::small_vector::SmallVector; use std::mem; use std::gc::{Gc, GC}; -pub static VERSION: &'static str = "0.11.0"; +pub static VERSION: &'static str = "0.12.0-pre"; pub fn maybe_inject_crates_ref(sess: &Session, krate: ast::Crate) -> ast::Crate { diff --git a/src/librustc/lib.rs b/src/librustc/lib.rs index 729eb908e3943..84fc4b6db3785 100644 --- a/src/librustc/lib.rs +++ b/src/librustc/lib.rs @@ -18,7 +18,7 @@ This API is completely unstable and subject to change. */ -#![crate_id = "rustc#0.11.0"] +#![crate_id = "rustc#0.12.0-pre"] #![experimental] #![comment = "The Rust compiler"] #![license = "MIT/ASL2"] @@ -26,7 +26,7 @@ This API is completely unstable and subject to change. #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/")] + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/")] #![allow(deprecated)] #![feature(macro_rules, globs, struct_variant, managed_boxes, quote)] diff --git a/src/librustdoc/lib.rs b/src/librustdoc/lib.rs index d878313ee2899..0af93a0a5ffe2 100644 --- a/src/librustdoc/lib.rs +++ b/src/librustdoc/lib.rs @@ -8,7 +8,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -#![crate_id = "rustdoc#0.11.0"] +#![crate_id = "rustdoc#0.12.0-pre"] #![experimental] #![desc = "rustdoc, the Rust documentation extractor"] #![license = "MIT/ASL2"] diff --git a/src/librustrt/lib.rs b/src/librustrt/lib.rs index fabef24e06ac7..ef64dde96e585 100644 --- a/src/librustrt/lib.rs +++ b/src/librustrt/lib.rs @@ -8,13 +8,13 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -#![crate_id = "rustrt#0.11.0"] +#![crate_id = "rustrt#0.12.0-pre"] #![license = "MIT/ASL2"] #![crate_type = "rlib"] #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/")] + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/")] #![feature(macro_rules, phase, globs, thread_local, managed_boxes, asm)] #![feature(linkage, lang_items, unsafe_destructor)] diff --git a/src/librustuv/lib.rs b/src/librustuv/lib.rs index c13263680aac7..2c9d354c0b095 100644 --- a/src/librustuv/lib.rs +++ b/src/librustuv/lib.rs @@ -34,14 +34,14 @@ via `close` and `delete` methods. */ -#![crate_id = "rustuv#0.11.0"] +#![crate_id = "rustuv#0.12.0-pre"] #![experimental] #![license = "MIT/ASL2"] #![crate_type = "rlib"] #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/", + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/", html_playground_url = "http://play.rust-lang.org/")] #![feature(macro_rules, unsafe_destructor)] diff --git a/src/libsemver/lib.rs b/src/libsemver/lib.rs index fc8aa8ac257a7..a7e7a56ad0607 100644 --- a/src/libsemver/lib.rs +++ b/src/libsemver/lib.rs @@ -28,14 +28,14 @@ //! An example version number with all five components is //! `0.8.1-rc.3.0+20130922.linux`. -#![crate_id = "semver#0.11.0"] +#![crate_id = "semver#0.12.0-pre"] #![experimental] #![crate_type = "rlib"] #![crate_type = "dylib"] #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/")] + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/")] use std::char; use std::cmp; diff --git a/src/libserialize/lib.rs b/src/libserialize/lib.rs index a2a5041323633..15e20d0ed77b4 100644 --- a/src/libserialize/lib.rs +++ b/src/libserialize/lib.rs @@ -14,14 +14,14 @@ Core encoding and decoding interfaces. */ -#![crate_id = "serialize#0.11.0"] +#![crate_id = "serialize#0.12.0-pre"] #![experimental] #![crate_type = "rlib"] #![crate_type = "dylib"] #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/", + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/", html_playground_url = "http://play.rust-lang.org/")] #![feature(macro_rules, managed_boxes, default_type_params, phase)] diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 0e6f848fce85a..d53b4efd64f66 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -94,7 +94,7 @@ //! all the standard macros, such as `assert!`, `fail!`, `println!`, //! and `format!`, also available to all Rust code. -#![crate_id = "std#0.11.0"] +#![crate_id = "std#0.12.0-pre"] #![unstable] #![comment = "The Rust standard library"] #![license = "MIT/ASL2"] @@ -102,7 +102,7 @@ #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/", + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/", html_playground_url = "http://play.rust-lang.org/")] #![feature(macro_rules, globs, managed_boxes, linkage)] diff --git a/src/libsync/lib.rs b/src/libsync/lib.rs index 4f6d1a261c491..d0f62a8fc33ec 100644 --- a/src/libsync/lib.rs +++ b/src/libsync/lib.rs @@ -17,14 +17,14 @@ //! use this crate specifically. Instead, its functionality is reexported //! through `std::sync`. -#![crate_id = "sync#0.11.0"] +#![crate_id = "sync#0.12.0-pre"] #![experimental] #![crate_type = "rlib"] #![crate_type = "dylib"] #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/", + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/", html_playground_url = "http://play.rust-lang.org/")] #![feature(phase, globs, macro_rules, unsafe_destructor)] diff --git a/src/libsyntax/lib.rs b/src/libsyntax/lib.rs index ce63d2bb7311a..a5443ad6c35de 100644 --- a/src/libsyntax/lib.rs +++ b/src/libsyntax/lib.rs @@ -18,14 +18,14 @@ This API is completely unstable and subject to change. */ -#![crate_id = "syntax#0.11.0"] +#![crate_id = "syntax#0.12.0-pre"] #![experimental] #![license = "MIT/ASL2"] #![crate_type = "dylib"] #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/")] + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/")] #![feature(macro_rules, globs, managed_boxes, default_type_params, phase)] #![feature(quote, unsafe_destructor)] diff --git a/src/libterm/lib.rs b/src/libterm/lib.rs index 56694e28b6662..56cba98e0d74e 100644 --- a/src/libterm/lib.rs +++ b/src/libterm/lib.rs @@ -38,7 +38,7 @@ //! [win]: http://msdn.microsoft.com/en-us/library/windows/desktop/ms682010%28v=vs.85%29.aspx //! [ti]: https://en.wikipedia.org/wiki/Terminfo -#![crate_id = "term#0.11.0"] +#![crate_id = "term#0.12.0-pre"] #![experimental] #![comment = "Simple ANSI color library"] #![license = "MIT/ASL2"] @@ -46,7 +46,7 @@ #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/", + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/", html_playground_url = "http://play.rust-lang.org/")] #![feature(macro_rules, phase)] diff --git a/src/libtest/lib.rs b/src/libtest/lib.rs index 02f7ebc6d21c8..1b4006b705bad 100644 --- a/src/libtest/lib.rs +++ b/src/libtest/lib.rs @@ -23,7 +23,7 @@ // running tests while providing a base that other test frameworks may // build off of. -#![crate_id = "test#0.11.0"] +#![crate_id = "test#0.12.0-pre"] #![experimental] #![comment = "Rust internal test library only used by rustc"] #![license = "MIT/ASL2"] @@ -31,7 +31,7 @@ #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/")] + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/")] #![feature(asm, macro_rules, phase)] diff --git a/src/libtime/lib.rs b/src/libtime/lib.rs index 0e4de41959a33..4afb0b2630f8f 100644 --- a/src/libtime/lib.rs +++ b/src/libtime/lib.rs @@ -10,7 +10,7 @@ //! Simple time handling. -#![crate_id = "time#0.11.0"] +#![crate_id = "time#0.12.0-pre"] #![experimental] #![crate_type = "rlib"] @@ -18,7 +18,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/", + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/", html_playground_url = "http://play.rust-lang.org/")] #![feature(phase)] diff --git a/src/liburl/lib.rs b/src/liburl/lib.rs index a60cc8e992b4d..5b15a89261b83 100644 --- a/src/liburl/lib.rs +++ b/src/liburl/lib.rs @@ -10,14 +10,14 @@ //! Types/fns concerning URLs (see RFC 3986) -#![crate_id = "url#0.11.0"] +#![crate_id = "url#0.12.0-pre"] #![experimental] #![crate_type = "rlib"] #![crate_type = "dylib"] #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/", + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/", html_playground_url = "http://play.rust-lang.org/")] #![feature(default_type_params)] diff --git a/src/libuuid/lib.rs b/src/libuuid/lib.rs index 297afe4aa598e..5be852546c71b 100644 --- a/src/libuuid/lib.rs +++ b/src/libuuid/lib.rs @@ -54,14 +54,14 @@ Examples of string representations: */ -#![crate_id = "uuid#0.11.0"] +#![crate_id = "uuid#0.12.0-pre"] #![experimental] #![crate_type = "rlib"] #![crate_type = "dylib"] #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.11.0/", + html_root_url = "http://doc.rust-lang.org/0.12.0-pre/", html_playground_url = "http://play.rust-lang.org/")] #![feature(default_type_params)] diff --git a/src/test/auxiliary/issue-11908-1.rs b/src/test/auxiliary/issue-11908-1.rs index 8a48e483029da..8a386c0162b03 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 = "url#0.11.0"] +#![crate_id = "url#0.12.0-pre"] #![crate_type = "dylib"] diff --git a/src/test/auxiliary/issue-11908-2.rs b/src/test/auxiliary/issue-11908-2.rs index 0deece53451ee..3415d60bb1959 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 = "url#0.11.0"] +#![crate_id = "url#0.12.0-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 a44481b4b7f23..e372733973a80 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.11.0" ] + [ `$(RUSTC) --crate-id crate.rs` = "foo#0.12.0-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 9faa7c016284b..b5423489c2afb 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.11.0"] +#![crate_id = "foo#0.12.0-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 3f152cc10610f..ea9d56cee8b1c 100644 --- a/src/test/run-pass/use.rs +++ b/src/test/run-pass/use.rs @@ -15,7 +15,7 @@ #![no_std] extern crate std; extern crate zed = "std"; -extern crate bar = "std#0.11.0"; +extern crate bar = "std#0.12.0-pre"; use std::str;