From 86b313648f22f63e9e1ac5c0051f9c91dfc2a119 Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Tue, 6 Jun 2023 14:44:35 -0500 Subject: [PATCH] chore: release 3.6.0 --- Cargo.toml | 2 +- NEWS | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 3c97b0b14..9625cf8fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tempfile" -version = "3.5.0" +version = "3.6.0" authors = [ "Steven Allen ", "The Rust Project Developers", diff --git a/NEWS b/NEWS index 14f8a9e4e..a75e04090 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,13 @@ +3.6.0 +===== + +- Update windows-sys to 0.48. +- Update rustix min version to 0.37.11 +- Forward some `NamedTempFile` and `SpooledTempFile` methods to the underlying `File` object for + better performance (especially vectorized writes, etc.). +- Implement `AsFd` and `AsHandle`. +- Misc documentation fixes and code cleanups. + 3.5.0 =====