Skip to content

Commit 2f7edda

Browse files
committedJun 19, 2015
Merge pull request rust-lang#26436 from brson/beta-backport
Beta backport
2 parents e99b140 + 174d179 commit 2f7edda

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed
 

‎mk/main.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ CFG_RELEASE_NUM=1.1.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=.4
21+
CFG_PRERELEASE_VERSION=.5
2222

2323
# Append a version-dependent hash to each library, so we can install different
2424
# versions in the same place

‎src/libstd/sys/unix/ext/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ pub mod raw;
4141
#[stable(feature = "rust1", since = "1.0.0")]
4242
pub mod prelude {
4343
#[doc(no_inline)]
44-
pub use super::io::{RawFd, AsRawFd};
44+
pub use super::io::{RawFd, AsRawFd, FromRawFd};
4545
#[doc(no_inline)] #[stable(feature = "rust1", since = "1.0.0")]
4646
pub use super::ffi::{OsStrExt, OsStringExt};
4747
#[doc(no_inline)]

‎src/libstd/sys/windows/ext/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ pub mod raw;
2828
pub mod prelude {
2929
#[doc(no_inline)]
3030
pub use super::io::{RawSocket, RawHandle, AsRawSocket, AsRawHandle};
31+
#[doc(no_inline)]
32+
pub use super::io::{FromRawSocket, FromRawHandle};
3133
#[doc(no_inline)] #[stable(feature = "rust1", since = "1.0.0")]
3234
pub use super::ffi::{OsStrExt, OsStringExt};
3335
#[doc(no_inline)]

0 commit comments

Comments
 (0)