about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorkennytm <kennytm@gmail.com>2018-12-23 00:08:00 +0800
committerkennytm <kennytm@gmail.com>2018-12-23 02:12:22 +0800
commite4430e034044e7917aeec195f51cb36306b42da7 (patch)
treec4967ebfa1487afad93b0c3af27a76646639bf0f /src/libstd
parent5e727a43cb800d330cbbc6b9935963f1c1082bfc (diff)
parent8c40aedb8fdc9b97013f8484498a71bada06c4dc (diff)
downloadrust-e4430e034044e7917aeec195f51cb36306b42da7.tar.gz
rust-e4430e034044e7917aeec195f51cb36306b42da7.zip
Rollup merge of #57040 - otavio:topic/adjust-path_from_str-feature-gate, r=Centril
Fix feature gate to point to 1.32.0 for `path_from_str`

When the feature has been added back (#55148) the feature gate has not
been adjusted accordingly. We have it enabled for 1.32.0, currently in
Beta, so adjust it.

Refs: #44431.

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/path.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/path.rs b/src/libstd/path.rs
index b882442dd2f..df05eb7d604 100644
--- a/src/libstd/path.rs
+++ b/src/libstd/path.rs
@@ -1461,7 +1461,7 @@ impl From<String> for PathBuf {
     }
 }
 
-#[stable(feature = "path_from_str", since = "1.26.0")]
+#[stable(feature = "path_from_str", since = "1.32.0")]
 impl FromStr for PathBuf {
     type Err = ParseError;