about summary refs log tree commit diff
path: root/src/librustpkg
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2013-04-04 21:46:37 -0700
committerBrian Anderson <banderson@mozilla.com>2013-04-09 10:59:32 -0700
commit23251b24389c68dd01ac26dbaa30125aa8f64c35 (patch)
tree1a603e512512d9fb47e834d6592f16c92709acdc /src/librustpkg
parent412a07055c211f2dec4fb87f25b87d2d71fb13de (diff)
downloadrust-23251b24389c68dd01ac26dbaa30125aa8f64c35.tar.gz
rust-23251b24389c68dd01ac26dbaa30125aa8f64c35.zip
Bump version to 0.7-pre
Diffstat (limited to 'src/librustpkg')
-rw-r--r--src/librustpkg/rustpkg.rc10
-rw-r--r--src/librustpkg/util.rs2
2 files changed, 6 insertions, 6 deletions
diff --git a/src/librustpkg/rustpkg.rc b/src/librustpkg/rustpkg.rc
index bf1301868af..8ff809023a3 100644
--- a/src/librustpkg/rustpkg.rc
+++ b/src/librustpkg/rustpkg.rc
@@ -11,7 +11,7 @@
 // rustpkg - a purely function package manager and build system
 
 #[link(name = "rustpkg",
-       vers = "0.6",
+       vers = "0.7-rc",
        uuid = "25de5e6e-279e-4a20-845c-4cabae92daaf",
        url = "https://github.com/mozilla/rust/tree/master/src/librustpkg")];
 
@@ -21,10 +21,10 @@
 #[allow(vecs_implicitly_copyable,
         non_implicitly_copyable_typarams)];
 
-extern mod core(vers = "0.6");
-extern mod std(vers = "0.6");
-extern mod rustc(vers = "0.6");
-extern mod syntax(vers = "0.6");
+extern mod core(vers = "0.7-rc");
+extern mod std(vers = "0.7-rc");
+extern mod rustc(vers = "0.7-rc");
+extern mod syntax(vers = "0.7-rc");
 
 use core::*;
 use core::container::Map;
diff --git a/src/librustpkg/util.rs b/src/librustpkg/util.rs
index 9d3751c3de2..7fd1379fa87 100644
--- a/src/librustpkg/util.rs
+++ b/src/librustpkg/util.rs
@@ -140,7 +140,7 @@ fn add_pkg_module(ctx: @mut ReadyCtx, m: ast::_mod) -> ast::_mod {
     let ext_cx = ctx.ext_cx;
     let item = quote_item! (
         mod __pkg {
-            extern mod rustpkg (vers="0.6");
+            extern mod rustpkg (vers="0.7-rc");
             static listeners : &[rustpkg::Listener] = $listeners;
             #[main]
             fn main() {