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",