Bump version from 0.7-pre to 0.7

This commit is contained in:
Brian Anderson 2013-06-30 16:36:48 -07:00
parent 9b8c435c8e
commit a766a955a9
16 changed files with 17 additions and 17 deletions

View File

@ -139,7 +139,7 @@ endif
# version-string calculation
CFG_GIT_DIR := $(CFG_SRC_DIR).git
CFG_RELEASE = 0.7-pre
CFG_RELEASE = 0.7
CFG_VERSION = $(CFG_RELEASE)
# windows exe's need numeric versions - don't use anything but
# numbers and dots here

View File

@ -15,8 +15,8 @@
#[no_core]; // XXX: Remove after snapshot
#[no_std];
extern mod core(name = "std", vers = "0.7-pre");
extern mod extra(name = "extra", vers = "0.7-pre");
extern mod core(name = "std", vers = "0.7");
extern mod extra(name = "extra", vers = "0.7");
use core::prelude::*;
use core::*;

View File

@ -11,7 +11,7 @@
#[no_core];
#[no_std];
extern mod core(name = "std", vers = "0.7-pre");
extern mod core(name = "std", vers = "0.7");
#[cfg(rustpkg)]
extern mod this(name = "rustpkg");

View File

@ -7,7 +7,7 @@
<!ENTITY rustIdent "[a-zA-Z_][a-zA-Z_0-9]*">
<!ENTITY rustIntSuf "([iu](8|16|32|64)?)?">
]>
<language name="Rust" version="0.7-pre" kateversion="2.4" section="Sources" extensions="*.rs;*.rc" mimetype="text/x-rust" priority="15">
<language name="Rust" version="0.7" kateversion="2.4" section="Sources" extensions="*.rs;*.rc" mimetype="text/x-rust" priority="15">
<highlighting>
<list name="fn">
<item> fn </item>

View File

@ -21,7 +21,7 @@ Rust extras are part of the standard Rust distribution.
*/
#[link(name = "extra",
vers = "0.7-pre",
vers = "0.7",
uuid = "122bed0b-c19b-4b82-b0b7-7ae8aead7297",
url = "https://github.com/mozilla/rust/tree/master/src/libextra")];

View File

@ -13,7 +13,7 @@
// FIXME #2238 Make run only accept source that emits an executable
#[link(name = "rust",
vers = "0.7-pre",
vers = "0.7",
uuid = "4a24da33-5cc8-4037-9352-2cbe9bd9d27c",
url = "https://github.com/mozilla/rust/tree/master/src/rust")];

View File

@ -18,7 +18,7 @@ use syntax::codemap::dummy_sp;
use syntax::codemap;
use syntax::fold;
static STD_VERSION: &'static str = "0.7-pre";
static STD_VERSION: &'static str = "0.7";
pub fn maybe_inject_libstd_ref(sess: Session, crate: @ast::crate)
-> @ast::crate {

View File

@ -271,7 +271,7 @@ mod __test {
*/
fn mk_std(cx: &TestCtxt) -> @ast::view_item {
let vers = ast::lit_str(@"0.7-pre");
let vers = ast::lit_str(@"0.7");
let vers = nospan(vers);
let mi = ast::meta_name_value(@"vers", vers);
let mi = nospan(mi);

View File

@ -9,7 +9,7 @@
// except according to those terms.
#[link(name = "rustc",
vers = "0.7-pre",
vers = "0.7",
uuid = "0ce89b41-2f92-459e-bbc1-8f5fe32f16cf",
url = "https://github.com/mozilla/rust/tree/master/src/rustc")];

View File

@ -11,7 +11,7 @@
//! Rustdoc - The Rust documentation generator
#[link(name = "rustdoc",
vers = "0.7-pre",
vers = "0.7",
uuid = "f8abd014-b281-484d-a0c3-26e3de8e2412",
url = "https://github.com/mozilla/rust/tree/master/src/rustdoc")];

View File

@ -44,7 +44,7 @@
*/
#[link(name = "rusti",
vers = "0.7-pre",
vers = "0.7",
uuid = "7fb5bf52-7d45-4fee-8325-5ad3311149fc",
url = "https://github.com/mozilla/rust/tree/master/src/rusti")];

View File

@ -44,7 +44,7 @@
*/
#[link(name = "rusti",
vers = "0.7-pre",
vers = "0.7",
uuid = "7fb5bf52-7d45-4fee-8325-5ad3311149fc",
url = "https://github.com/mozilla/rust/tree/master/src/rusti")];

View File

@ -11,7 +11,7 @@
// rustpkg - a package manager and build system for Rust
#[link(name = "rustpkg",
vers = "0.7-pre",
vers = "0.7",
uuid = "25de5e6e-279e-4a20-845c-4cabae92daaf",
url = "https://github.com/mozilla/rust/tree/master/src/librustpkg")];

View File

@ -49,7 +49,7 @@ they contained the following prologue:
#[link(name = "std",
vers = "0.7-pre",
vers = "0.7",
uuid = "c70c24a7-5551-4f73-8e37-380b11d80be8",
url = "https://github.com/mozilla/rust/tree/master/src/libstd")];

View File

@ -14,7 +14,7 @@
*/
#[link(name = "syntax",
vers = "0.7-pre",
vers = "0.7",
uuid = "9311401b-d6ea-4cd9-a1d9-61f89499c645")];
#[license = "MIT/ASL2"];

View File

@ -13,7 +13,7 @@
#[no_std];
extern mod std;
extern mod zed(name = "std");
extern mod bar(name = "std", vers = "0.7-pre");
extern mod bar(name = "std", vers = "0.7");
use std::str;