Skip to content

Commit b6d37bf

Browse files
committed
---
yaml --- r: 214670 b: refs/heads/beta c: a33b808 h: refs/heads/master v: v3
1 parent c22c222 commit b6d37bf

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ refs/tags/0.9: 36870b185fc5f5486636d4515f0e22677493f225
2323
refs/tags/0.10: ac33f2b15782272ae348dbd7b14b8257b2148b5a
2424
refs/tags/0.11.0: e1247cb1d0d681be034adb4b558b5a0c0d5720f9
2525
refs/tags/0.12.0: f0c419429ef30723ceaf6b42f9b5a2aeb5d2e2d1
26-
refs/heads/beta: a650075f89d562766b97f5b845343e1a3e36a1d1
26+
refs/heads/beta: a33b808ac0ec37a8ef78b0581b3b061271c93ab8
2727
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
2828
refs/heads/tmp: 8c0aa6d64ebab528f7eb182812007155d6044972
2929
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f

branches/beta/src/libstd/fs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -949,7 +949,7 @@ pub fn hard_link<P: AsRef<Path>, Q: AsRef<Path>>(src: P, dst: Q) -> io::Result<(
949949
/// # Ok(())
950950
/// # }
951951
/// ```
952-
#[deprecated(since = "1.0.0",
952+
#[deprecated(since = "1.1.0",
953953
reason = "replaced with std::os::unix::fs::symlink and \
954954
std::os::windows::fs::{symlink_file, symlink_dir}")]
955955
#[stable(feature = "rust1", since = "1.0.0")]

branches/beta/src/libstd/sys/unix/ext/fs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ impl DirEntryExt for fs::DirEntry {
184184
/// # Ok(())
185185
/// # }
186186
/// ```
187-
#[stable(feature = "rust1", since = "1.0.0")]
187+
#[stable(feature = "symlink", since = "1.1.0")]
188188
pub fn symlink<P: AsRef<Path>, Q: AsRef<Path>>(src: P, dst: Q) -> io::Result<()>
189189
{
190190
sys::fs::symlink(src.as_ref(), dst.as_ref())

branches/beta/src/libstd/sys/windows/ext/fs.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ impl MetadataExt for Metadata {
122122
/// # Ok(())
123123
/// # }
124124
/// ```
125-
#[stable(feature = "rust1", since = "1.0.0")]
125+
#[stable(feature = "symlink", since = "1.1.0")]
126126
pub fn symlink_file<P: AsRef<Path>, Q: AsRef<Path>>(src: P, dst: Q)
127127
-> io::Result<()> {
128128
sys::fs::symlink_inner(src.as_ref(), dst.as_ref(), false)
@@ -143,7 +143,7 @@ pub fn symlink_file<P: AsRef<Path>, Q: AsRef<Path>>(src: P, dst: Q)
143143
/// # Ok(())
144144
/// # }
145145
/// ```
146-
#[stable(feature = "rust1", since = "1.0.0")]
146+
#[stable(feature = "symlink", since = "1.1.0")]
147147
pub fn symlink_dir<P: AsRef<Path>, Q: AsRef<Path>>(src: P, dst: Q)
148148
-> io::Result<()> {
149149
sys::fs::symlink_inner(src.as_ref(), dst.as_ref(), true)

0 commit comments

Comments
 (0)