From 0ad019f4e86d68682dacb90f1d0d03cddba31bac Mon Sep 17 00:00:00 2001 From: Mikhail Zabaluev Date: Sat, 30 May 2015 15:09:13 +0300 Subject: [PATCH] std::io: bump the stability tag on ErrorKind::InvalidData to 1.2.0 --- src/libstd/io/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/io/error.rs b/src/libstd/io/error.rs index 92b5fab6df2..c4e472f158e 100644 --- a/src/libstd/io/error.rs +++ b/src/libstd/io/error.rs @@ -100,7 +100,7 @@ pub enum ErrorKind { /// Unlike `InvalidInput`, this typically means that the operation /// parameters were valid, however the error was caused by malformed /// input data. - #[stable(feature = "io_invalid_data", since = "1.1.0")] + #[stable(feature = "io_invalid_data", since = "1.2.0")] InvalidData, /// The I/O operation's timeout expired, causing it to be canceled. #[stable(feature = "rust1", since = "1.0.0")]