From a354f8cb118004cb0c4c6b6aa6bb351e6c191b96 Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Sat, 28 Sep 2024 08:36:10 -0700 Subject: [PATCH] chore: release 3.13.0 --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a43eae6a..672e62984 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 3.13.0 + +- Add `with_suffix` constructors for easily creating new temporary files with a specific suffix (e.g., a specific file extension). Thanks to @Borgerr. +- Update dependencies (fastrand & rustix). + ## 3.12.0 - Add a `keep(keep: bool)` function to builder that suppresses delete-on-drop behavior (thanks to @RalfJung). diff --git a/Cargo.toml b/Cargo.toml index d9879f595..6f29fd751 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tempfile" -version = "3.12.0" +version = "3.13.0" authors = [ "Steven Allen ", "The Rust Project Developers",