From 3d658ffd0811d1081e7dfceb5f0b18493eec6a7f Mon Sep 17 00:00:00 2001 From: Jack O'Connor Date: Sat, 1 Oct 2022 13:02:24 -0700 Subject: [PATCH] version 1.1.0 Changes since 1.0.1: - Added the `io_safety` feature, which implements various conversions to and from the `OwnedFd` and `BorrowedFd` IO safety types introduced in Rust 1.63. This feature is currently off by default to avoid bumping the MSRV too aggressively, but someday we'll bump the MSRV, these conversions will be implemented unconditionally, and this feature will become no-op. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d8f1301..52b015e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "os_pipe" -version = "1.0.1" +version = "1.1.0" authors = ["Jack O'Connor"] description = "a cross-platform library for opening OS pipes" repository = "https://github.com/oconnor663/os_pipe.rs"