Skip to content

Commit f3fe85d

Browse files
committed
Bump version numbers to 0.2
1 parent b224bcf commit f3fe85d

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ LIBRUSTC_DSYM_GLOB :=$(call CFG_LIB_DSYM_GLOB,rustc)
120120

121121
# version-string calculation
122122
CFG_GIT_DIR := $(CFG_SRC_DIR).git
123-
CFG_RELEASE = 0.1.1
123+
CFG_RELEASE = 0.2
124124
CFG_VERSION = $(CFG_RELEASE)
125125

126126
ifneq ($(wildcard $(CFG_GIT)),)

src/cargo/cargo.rc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// End:
1212

1313
#[link(name = "cargo",
14-
vers = "0.1",
14+
vers = "0.2",
1515
uuid = "9ff87a04-8fed-4295-9ff8-f99bb802650b",
1616
url = "http://rust-lang.org/doc/cargo")];
1717

src/libcore/core.rc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#[link(name = "core",
2-
vers = "0.1",
2+
vers = "0.2",
33
uuid = "c70c24a7-5551-4f73-8e37-380b11d80be8",
44
url = "http://rust-lang.org/src/core")];
55

src/libstd/std.rc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#[link(name = "std",
2-
vers = "0.1",
2+
vers = "0.2",
33
uuid = "122bed0b-c19b-4b82-b0b7-7ae8aead7297",
44
url = "http://rust-lang.org/src/std")];
55

src/rustc/rustc.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// -*- rust -*-
22

33
#[link(name = "rustc",
4-
vers = "0.1",
4+
vers = "0.2",
55
uuid = "0ce89b41-2f92-459e-bbc1-8f5fe32f16cf",
66
url = "http://rust-lang.org/src/rustc")];
77

@@ -10,7 +10,7 @@
1010
#[crate_type = "lib"];
1111

1212
use std (name = "std",
13-
vers = "0.1",
13+
vers = "0.2",
1414
url = "http://rust-lang.org/src/std");
1515

1616
mod middle {

src/rustdoc/rustdoc.rc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#[doc = "Rustdoc - The Rust documentation generator"];
22

33
#[link(name = "rustdoc",
4-
vers = "0.1",
4+
vers = "0.2",
55
uuid = "f8abd014-b281-484d-a0c3-26e3de8e2412",
66
url = "http://rust-lang.org/doc/rustdoc")];
77

0 commit comments

Comments
 (0)