From 8c40aedb8fdc9b97013f8484498a71bada06c4dc Mon Sep 17 00:00:00 2001 From: Otavio Salvador Date: Fri, 21 Dec 2018 11:33:59 -0200 Subject: [PATCH] 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 --- src/libstd/path.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/path.rs b/src/libstd/path.rs index b882442dd2f4e..df05eb7d6042d 100644 --- a/src/libstd/path.rs +++ b/src/libstd/path.rs @@ -1461,7 +1461,7 @@ impl From 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;