Skip to content

Commit d3eb33e

Browse files
authored
Merge pull request #36686 from brson/beta-next
Beta next
2 parents aec8364 + aaf78d8 commit d3eb33e

File tree

2 files changed

+1
-21
lines changed

2 files changed

+1
-21
lines changed

mk/main.mk

+1-1
Original file line numberDiff line numberDiff 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

2323
ifeq ($(CFG_RELEASE_CHANNEL),stable)
2424
# This is the normal semver version string, e.g. "0.12.0", "0.12.0-nightly"

src/libcollections/string.rs

-20
Original file line numberDiff line numberDiff 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")]
19251905
impl fmt::Write for String {
19261906
#[inline]

0 commit comments

Comments
 (0)