File tree Expand file tree Collapse file tree 2 files changed +1
-21
lines changed Expand file tree Collapse file tree 2 files changed +1
-21
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ CFG_RELEASE_NUM=1.12.0
1818# An optional number to put after the label, e.g. '.2' -> '-beta.2'
1919# NB Make sure it starts with a dot to conform to semver pre-release
2020# versions (section 9)
21- CFG_PRERELEASE_VERSION =.5
21+ CFG_PRERELEASE_VERSION =.6
2222
2323ifeq ($(CFG_RELEASE_CHANNEL ) ,stable)
2424# This is the normal semver version string, e.g. "0.12.0", "0.12.0-nightly"
Original file line number Diff line number Diff line change @@ -1901,26 +1901,6 @@ impl Into<Vec<u8>> for String {
19011901 }
19021902}
19031903
1904- #[ stable( feature = "stringfromchars" , since = "1.12.0" ) ]
1905- impl < ' a > From < & ' a [ char ] > for String {
1906- #[ inline]
1907- fn from ( v : & ' a [ char ] ) -> String {
1908- let mut s = String :: with_capacity ( v. len ( ) ) ;
1909- for c in v {
1910- s. push ( * c) ;
1911- }
1912- s
1913- }
1914- }
1915-
1916- #[ stable( feature = "stringfromchars" , since = "1.12.0" ) ]
1917- impl From < Vec < char > > for String {
1918- #[ inline]
1919- fn from ( v : Vec < char > ) -> String {
1920- String :: from ( v. as_slice ( ) )
1921- }
1922- }
1923-
19241904#[ stable( feature = "rust1" , since = "1.0.0" ) ]
19251905impl fmt:: Write for String {
19261906 #[ inline]
You can’t perform that action at this time.
0 commit comments