Skip to content

Commit 65b05a6

Browse files
committed
Bump version to 0.4
1 parent bb8a510 commit 65b05a6

File tree

12 files changed

+33
-33
lines changed

12 files changed

+33
-33
lines changed

Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ LIBSYNTAX_DSYM_GLOB :=$(call CFG_LIB_DSYM_GLOB,syntax)
129129

130130
# version-string calculation
131131
CFG_GIT_DIR := $(CFG_SRC_DIR).git
132-
CFG_RELEASE = 0.3.1
132+
CFG_RELEASE = 0.4
133133
CFG_VERSION = $(CFG_RELEASE)
134134

135135
ifneq ($(wildcard $(CFG_GIT)),)

src/cargo/cargo.rc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
// End:
1111

1212
#[link(name = "cargo",
13-
vers = "0.3",
13+
vers = "0.4",
1414
uuid = "9ff87a04-8fed-4295-9ff8-f99bb802650b",
1515
url = "https://github.com/mozilla/rust/tree/master/src/cargo")];
1616

@@ -21,10 +21,10 @@
2121
#[allow(vecs_implicitly_copyable,
2222
non_implicitly_copyable_typarams)];
2323

24-
use core(vers = "0.3");
25-
use std(vers = "0.3");
26-
use rustc(vers = "0.3");
27-
use syntax(vers = "0.3");
24+
use core(vers = "0.4");
25+
use std(vers = "0.4");
26+
use rustc(vers = "0.4");
27+
use syntax(vers = "0.4");
2828

2929
import core::*;
3030

src/compiletest/compiletest.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
#[allow(vecs_implicitly_copyable)];
66

7-
use core(vers = "0.3");
8-
use std(vers = "0.3");
7+
use core(vers = "0.4");
8+
use std(vers = "0.4");
99

1010
import core::*;
1111

src/fuzzer/fuzzer.rc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77
#[allow(vecs_implicitly_copyable)];
88

9-
use core(vers = "0.3");
10-
use std(vers = "0.3");
11-
use syntax(vers = "0.3");
9+
use core(vers = "0.4");
10+
use std(vers = "0.4");
11+
use syntax(vers = "0.4");
1212

1313
import core::*;
1414

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.3",
2+
vers = "0.4",
33
uuid = "c70c24a7-5551-4f73-8e37-380b11d80be8",
44
url = "https://github.com/mozilla/rust/tree/master/src/libcore")];
55

src/libcore/core.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export add, sub, mul, div, modulo, neg, bitand, bitor, bitxor;
5858
export shl, shr, index;
5959

6060
#[cfg(test)]
61-
use coreops(name = "core", vers = "0.3");
61+
use coreops(name = "core", vers = "0.4");
6262

6363
#[cfg(test)]
6464
import coreops::ops::{const, copy, send, owned};
@@ -96,7 +96,7 @@ mod core {
9696
// Similar to above. Some magic to make core testable.
9797
#[cfg(test)]
9898
mod std {
99-
use std(vers = "0.3");
99+
use std(vers = "0.4");
100100
import std::test;
101101
}
102102

src/libstd/std.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#[link(name = "std",
2-
vers = "0.3",
2+
vers = "0.4",
33
uuid = "122bed0b-c19b-4b82-b0b7-7ae8aead7297",
44
url = "https://github.com/mozilla/rust/tree/master/src/libstd")];
55

@@ -12,7 +12,7 @@
1212

1313
#[allow(vecs_implicitly_copyable)];
1414

15-
use core(vers = "0.3");
15+
use core(vers = "0.4");
1616
import core::*;
1717

1818
export net, net_tcp, net_ip, net_url;

src/libsyntax/syntax.rc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#[link(name = "syntax",
2-
vers = "0.3",
2+
vers = "0.4",
33
uuid = "9311401b-d6ea-4cd9-a1d9-61f89499c645")];
44

55

@@ -10,8 +10,8 @@
1010

1111
#[allow(vecs_implicitly_copyable)];
1212

13-
use core(vers = "0.3");
14-
use std(vers = "0.3");
13+
use core(vers = "0.4");
14+
use std(vers = "0.4");
1515

1616
import core::*;
1717

src/rustc/driver/rustc.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#[no_core];
22
#[allow(vecs_implicitly_copyable)];
33

4-
use core(vers = "0.3");
5-
use std(vers = "0.3");
6-
use rustc(vers = "0.3");
7-
use syntax(vers = "0.3");
4+
use core(vers = "0.4");
5+
use std(vers = "0.4");
6+
use rustc(vers = "0.4");
7+
use syntax(vers = "0.4");
88

99
import core::*;
1010

src/rustc/rustc.rc

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

33
#[link(name = "rustc",
4-
vers = "0.3",
4+
vers = "0.4",
55
uuid = "0ce89b41-2f92-459e-bbc1-8f5fe32f16cf",
66
url = "https://github.com/mozilla/rust/tree/master/src/rustc")];
77

@@ -14,9 +14,9 @@
1414
#[allow(vecs_implicitly_copyable)];
1515
// #[warn(deprecated_pattern)];
1616

17-
use core(vers = "0.3");
18-
use std(vers = "0.3");
19-
use syntax(vers = "0.3");
17+
use core(vers = "0.4");
18+
use std(vers = "0.4");
19+
use syntax(vers = "0.4");
2020

2121
import core::*;
2222

src/rustdoc/rustdoc.rc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Rustdoc - The Rust documentation generator
22

33
#[link(name = "rustdoc",
4-
vers = "0.3",
4+
vers = "0.4",
55
uuid = "f8abd014-b281-484d-a0c3-26e3de8e2412",
66
url = "https://github.com/mozilla/rust/tree/master/src/rustdoc")];
77

@@ -14,10 +14,10 @@
1414
#[allow(vecs_implicitly_copyable,
1515
non_implicitly_copyable_typarams)];
1616

17-
use core(vers = "0.3");
18-
use std(vers = "0.3");
19-
use rustc(vers = "0.3");
20-
use syntax(vers = "0.3");
17+
use core(vers = "0.4");
18+
use std(vers = "0.4");
19+
use rustc(vers = "0.4");
20+
use syntax(vers = "0.4");
2121

2222
import core::*;
2323
import std::par;

src/test/run-pass/use.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#[no_core];
22
use core;
33
use zed(name = "core");
4-
use bar(name = "core", vers = "0.3");
4+
use bar(name = "core", vers = "0.4");
55

66

77
import core::str;

0 commit comments

Comments
 (0)