From be81bc9a54e9775d611b37216f9cfa864a35a927 Mon Sep 17 00:00:00 2001 From: Philipp Schuster Date: Fri, 2 Aug 2024 09:32:53 +0200 Subject: [PATCH] release: prepare v0.3.2 --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5488020..efaa565 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# v0.3.2 (2024-08-02) + +- `TarArchive::entries` is now `#[must_use]` + # v0.3.1 (2024-05-03) - More sanity checks with malformed Tar archives. diff --git a/Cargo.toml b/Cargo.toml index 92cfe79..c6be8b2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ as GNU Longname. The maximum supported file name length is 256 characters exclud (using the tar name/prefix longname implementation).The maximum supported file size is 8GiB. Directories are supported, but only regular fields are yielded in iteration. """ -version = "0.3.1" +version = "0.3.2" edition = "2021" keywords = ["tar", "tarball", "archive"] categories = ["data-structures", "no-std", "parser-implementations"]