Skip to content

Commit c1a2670

Browse files
committed
---
yaml --- r: 30196 b: refs/heads/incoming c: 65b05a6 h: refs/heads/master v: v3
1 parent eeac6dc commit c1a2670

File tree

13 files changed

+34
-34
lines changed

13 files changed

+34
-34
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ refs/heads/try: d324a424d8f84b1eb049b12cf34182bda91b0024
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: d0c6ce338884ee21843f4b40bf6bf18d222ce5df
9-
refs/heads/incoming: bb8a51011391bef49167bebcbc4539623cab3005
9+
refs/heads/incoming: 65b05a6ce8e486e085e6a58634f66a27cc631cfb
1010
refs/heads/dist-snap: 2f32a1581f522e524009138b33b1c7049ced668d
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/incoming/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)),)

branches/incoming/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

branches/incoming/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

branches/incoming/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

branches/incoming/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

branches/incoming/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

branches/incoming/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;

branches/incoming/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

branches/incoming/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

branches/incoming/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

branches/incoming/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;

branches/incoming/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)