File tree 13 files changed +13
-13
lines changed
13 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ endif
154
154
155
155
# version-string calculation
156
156
CFG_GIT_DIR := $(CFG_SRC_DIR ) .git
157
- CFG_RELEASE = 0.9-pre
157
+ CFG_RELEASE = 0.9
158
158
CFG_VERSION = $(CFG_RELEASE )
159
159
# windows exe's need numeric versions - don't use anything but
160
160
# numbers and dots here
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.9-pre " kateversion =" 2.4" section =" Sources" extensions =" *.rs;*.rc" mimetype =" text/x-rust" priority =" 15" >
10
+ <language name =" Rust" version =" 0.9" 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 @@ -20,7 +20,7 @@ Rust extras are part of the standard Rust distribution.
20
20
21
21
*/
22
22
23
- #[ crate_id = "extra#0.9-pre " ] ;
23
+ #[ crate_id = "extra#0.9" ] ;
24
24
#[ comment = "Rust extras" ] ;
25
25
#[ license = "MIT/ASL2" ] ;
26
26
#[ crate_type = "rlib" ] ;
Original file line number Diff line number Diff line change 17
17
//! This can be optionally linked in to rust programs in order to provide M:N
18
18
//! functionality inside of 1:1 programs.
19
19
20
- #[ crate_id = "green#0.9-pre " ] ;
20
+ #[ crate_id = "green#0.9" ] ;
21
21
#[ license = "MIT/ASL2" ] ;
22
22
#[ crate_type = "rlib" ] ;
23
23
#[ crate_type = "dylib" ] ;
Original file line number Diff line number Diff line change 14
14
//! runtime. In addition, all I/O provided by this crate is the thread blocking
15
15
//! version of I/O.
16
16
17
- #[ crate_id = "native#0.9-pre " ] ;
17
+ #[ crate_id = "native#0.9" ] ;
18
18
#[ license = "MIT/ASL2" ] ;
19
19
#[ crate_type = "rlib" ] ;
20
20
#[ crate_type = "dylib" ] ;
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ use syntax::fold;
21
21
use syntax:: opt_vec;
22
22
use syntax:: util:: small_vector:: SmallVector ;
23
23
24
- pub static VERSION : & ' static str = "0.9-pre " ;
24
+ pub static VERSION : & ' static str = "0.9" ;
25
25
26
26
pub fn maybe_inject_libstd_ref ( sess : Session , crate : ast:: Crate )
27
27
-> ast:: Crate {
Original file line number Diff line number Diff line change 8
8
// option. This file may not be copied, modified, or distributed
9
9
// except according to those terms.
10
10
11
- #[ crate_id = "rustc#0.9-pre " ] ;
11
+ #[ crate_id = "rustc#0.9" ] ;
12
12
#[ comment = "The Rust compiler" ] ;
13
13
#[ license = "MIT/ASL2" ] ;
14
14
#[ crate_type = "dylib" ] ;
Original file line number Diff line number Diff line change 8
8
// option. This file may not be copied, modified, or distributed
9
9
// except according to those terms.
10
10
11
- #[ crate_id = "rustdoc#0.9-pre " ] ;
11
+ #[ crate_id = "rustdoc#0.9" ] ;
12
12
#[ desc = "rustdoc, the Rust documentation extractor" ] ;
13
13
#[ license = "MIT/ASL2" ] ;
14
14
#[ crate_type = "dylib" ] ;
Original file line number Diff line number Diff line change 10
10
11
11
// rustpkg - a package manager and build system for Rust
12
12
13
- #[ crate_id = "rustpkg#0.9-pre " ] ;
13
+ #[ crate_id = "rustpkg#0.9" ] ;
14
14
#[ license = "MIT/ASL2" ] ;
15
15
#[ crate_type = "dylib" ] ;
16
16
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ via `close` and `delete` methods.
34
34
35
35
*/
36
36
37
- #[ crate_id = "rustuv#0.9-pre " ] ;
37
+ #[ crate_id = "rustuv#0.9" ] ;
38
38
#[ license = "MIT/ASL2" ] ;
39
39
#[ crate_type = "rlib" ] ;
40
40
#[ crate_type = "dylib" ] ;
Original file line number Diff line number Diff line change 43
43
//!
44
44
//! use std::prelude::*;
45
45
46
- #[ crate_id = "std#0.9-pre " ] ;
46
+ #[ crate_id = "std#0.9" ] ;
47
47
#[ comment = "The Rust standard library" ] ;
48
48
#[ license = "MIT/ASL2" ] ;
49
49
#[ crate_type = "rlib" ] ;
Original file line number Diff line number Diff line change 13
13
* macros.
14
14
*/
15
15
16
- #[ crate_id = "syntax#0.9-pre " ] ;
16
+ #[ crate_id = "syntax#0.9" ] ;
17
17
#[ license = "MIT/ASL2" ] ;
18
18
#[ crate_type = "dylib" ] ;
19
19
#[ crate_type = "rlib" ] ;
Original file line number Diff line number Diff line change 17
17
#[ no_std] ;
18
18
extern mod std;
19
19
extern mod zed = "std" ;
20
- extern mod bar = "std#0.9-pre " ;
20
+ extern mod bar = "std#0.9" ;
21
21
22
22
23
23
use std:: str;
You can’t perform that action at this time.
0 commit comments