Skip to content

Commit 9f9e4c5

Browse files
committed
---
yaml --- r: 208855 b: refs/heads/snap-stage3 c: a33b808 h: refs/heads/master i: 208853: 6ef5dd1 208851: 702f5c2 208847: 60f4d36 v: v3
1 parent 72feeef commit 9f9e4c5

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
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 38a97becdf3e6a6157f6f7ec2d98ade8d8edc193
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: a650075f89d562766b97f5b845343e1a3e36a1d1
4+
refs/heads/snap-stage3: a33b808ac0ec37a8ef78b0581b3b061271c93ab8
55
refs/heads/try: 7b4ef47b7805a402d756fb8157101f64880a522f
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d

branches/snap-stage3/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/snap-stage3/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/snap-stage3/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)