File tree Expand file tree Collapse file tree 13 files changed +14
-14
lines changed Expand file tree Collapse file tree 13 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -139,11 +139,11 @@ endif
139
139
140
140
# version-string calculation
141
141
CFG_GIT_DIR := $(CFG_SRC_DIR ) .git
142
- CFG_RELEASE = 0.7
142
+ CFG_RELEASE = 0.8-pre
143
143
CFG_VERSION = $(CFG_RELEASE )
144
144
# windows exe's need numeric versions - don't use anything but
145
145
# numbers and dots here
146
- CFG_VERSION_WIN = 0.7
146
+ CFG_VERSION_WIN = 0.8
147
147
148
148
ifneq ($(wildcard $(CFG_GIT ) ) ,)
149
149
ifneq ($(wildcard $(CFG_GIT_DIR ) ) ,)
Original file line number Diff line number Diff line change 7
7
<!ENTITY rustIdent " [a-zA-Z_][a-zA-Z_0-9]*" >
8
8
<!ENTITY rustIntSuf " ([iu](8|16|32|64)?)?" >
9
9
]>
10
- <language name =" Rust" version =" 0.7 " kateversion =" 2.4" section =" Sources" extensions =" *.rs;*.rc" mimetype =" text/x-rust" priority =" 15" >
10
+ <language name =" Rust" version =" 0.8-pre " kateversion =" 2.4" section =" Sources" extensions =" *.rs;*.rc" mimetype =" text/x-rust" priority =" 15" >
11
11
<highlighting >
12
12
<list name =" fn" >
13
13
<item > fn </item >
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ Rust extras are part of the standard Rust distribution.
21
21
*/
22
22
23
23
#[ link( name = "extra" ,
24
- vers = "0.7 " ,
24
+ vers = "0.8-pre " ,
25
25
uuid = "122bed0b-c19b-4b82-b0b7-7ae8aead7297" ,
26
26
url = "https://github.com/mozilla/rust/tree/master/src/libextra" ) ] ;
27
27
Original file line number Diff line number Diff line change 13
13
// FIXME #2238 Make run only accept source that emits an executable
14
14
15
15
#[ link( name = "rust" ,
16
- vers = "0.7 " ,
16
+ vers = "0.8-pre " ,
17
17
uuid = "4a24da33-5cc8-4037-9352-2cbe9bd9d27c" ,
18
18
url = "https://github.com/mozilla/rust/tree/master/src/rust" ) ] ;
19
19
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ use syntax::codemap::dummy_sp;
18
18
use syntax:: codemap;
19
19
use syntax:: fold;
20
20
21
- static STD_VERSION : & ' static str = "0.7 " ;
21
+ static STD_VERSION : & ' static str = "0.8-pre " ;
22
22
23
23
pub fn maybe_inject_libstd_ref ( sess : Session , crate : @ast:: crate )
24
24
-> @ast:: crate {
Original file line number Diff line number Diff line change @@ -273,7 +273,7 @@ mod __test {
273
273
*/
274
274
275
275
fn mk_std ( cx : & TestCtxt ) -> ast:: view_item {
276
- let vers = ast:: lit_str ( @"0.7 ") ;
276
+ let vers = ast:: lit_str ( @"0.8 -pre ") ;
277
277
let vers = nospan ( vers) ;
278
278
let mi = ast:: meta_name_value ( @"vers", vers) ;
279
279
let mi = nospan ( mi) ;
Original file line number Diff line number Diff line change 9
9
// except according to those terms.
10
10
11
11
#[ link( name = "rustc" ,
12
- vers = "0.7 " ,
12
+ vers = "0.8-pre " ,
13
13
uuid = "0ce89b41-2f92-459e-bbc1-8f5fe32f16cf" ,
14
14
url = "https://github.com/mozilla/rust/tree/master/src/rustc" ) ] ;
15
15
Original file line number Diff line number Diff line change 11
11
//! Rustdoc - The Rust documentation generator
12
12
13
13
#[ link( name = "rustdoc" ,
14
- vers = "0.7 " ,
14
+ vers = "0.8-pre " ,
15
15
uuid = "f8abd014-b281-484d-a0c3-26e3de8e2412" ,
16
16
url = "https://github.com/mozilla/rust/tree/master/src/rustdoc" ) ] ;
17
17
Original file line number Diff line number Diff line change 44
44
*/
45
45
46
46
#[ link( name = "rusti" ,
47
- vers = "0.7 " ,
47
+ vers = "0.8-pre " ,
48
48
uuid = "7fb5bf52-7d45-4fee-8325-5ad3311149fc" ,
49
49
url = "https://github.com/mozilla/rust/tree/master/src/rusti" ) ] ;
50
50
Original file line number Diff line number Diff line change 11
11
// rustpkg - a package manager and build system for Rust
12
12
13
13
#[ link( name = "rustpkg" ,
14
- vers = "0.7 " ,
14
+ vers = "0.8-pre " ,
15
15
uuid = "25de5e6e-279e-4a20-845c-4cabae92daaf" ,
16
16
url = "https://github.com/mozilla/rust/tree/master/src/librustpkg" ) ] ;
17
17
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ they contained the following prologue:
49
49
50
50
51
51
#[ link( name = "std" ,
52
- vers = "0.7 " ,
52
+ vers = "0.8-pre " ,
53
53
uuid = "c70c24a7-5551-4f73-8e37-380b11d80be8" ,
54
54
url = "https://github.com/mozilla/rust/tree/master/src/libstd" ) ] ;
55
55
Original file line number Diff line number Diff line change 14
14
*/
15
15
16
16
#[ link( name = "syntax" ,
17
- vers = "0.7 " ,
17
+ vers = "0.8-pre " ,
18
18
uuid = "9311401b-d6ea-4cd9-a1d9-61f89499c645" ) ] ;
19
19
20
20
#[ license = "MIT/ASL2" ] ;
Original file line number Diff line number Diff line change 13
13
#[ no_std] ;
14
14
extern mod std;
15
15
extern mod zed ( name = "std" ) ;
16
- extern mod bar ( name = "std" , vers = "0.7 " ) ;
16
+ extern mod bar ( name = "std" , vers = "0.8-pre " ) ;
17
17
18
18
19
19
use std:: str;
You can’t perform that action at this time.
0 commit comments