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