From c773849f1de482ed2033c0ff86afd21f48980452 Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Tue, 28 Mar 2023 20:28:45 -0700 Subject: [PATCH] chore: release 3.5.0 --- Cargo.toml | 2 +- NEWS | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 571b542ab..fc8491275 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tempfile" -version = "3.4.0" +version = "3.5.0" authors = [ "Steven Allen ", "The Rust Project Developers", diff --git a/NEWS b/NEWS index 12f4f1f7d..14f8a9e4e 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,10 @@ +3.5.0 +===== + +- Update rustix from 0.36 to 0.37.1. This makes wasi work on rust stable +- Update `windows-sys`, `redox_syscall` +- BREAKING: Remove the implementation of `Write for &NamedTempFile where &F: Write`. Unfortunately, this can cause compile issues in unrelated code (https://github.com/Stebalien/tempfile/issues/224). + 3.4.0 =====