diff --git a/CHANGELOG.md b/CHANGELOG.md index e590c5a..a526e4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,57 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [3.0.0](https://github.com/fasterthanlime/rc-zip/compare/v2.0.1...v3.0.0) - 2024-01-31 + +### Added +- Add zstd support ([#56](https://github.com/fasterthanlime/rc-zip/pull/56)) +- Switch to winnow ([#50](https://github.com/fasterthanlime/rc-zip/pull/50)) +- Add bzip2 support ([#48](https://github.com/fasterthanlime/rc-zip/pull/48)) +- Add deflate64 method ([#43](https://github.com/fasterthanlime/rc-zip/pull/43)) +- LZMA compression method ([#41](https://github.com/fasterthanlime/rc-zip/pull/41)) + +### Fixed +- Read 64-bit extra fields compressed/uncompressed sizes properly + +### Other +- Bump to oval@2.0.0 +- Move tests to tests dir ([#54](https://github.com/fasterthanlime/rc-zip/pull/54)) +- Turn jean into an example, move things closer to the root of the repo ([#53](https://github.com/fasterthanlime/rc-zip/pull/53)) +- Add funding section, give Row Zero attribution +- Make CI faster by grouping all supported methods +- Switch from circular to oval ([#47](https://github.com/fasterthanlime/rc-zip/pull/47)) +- Ignore .direnv +- Don't run cargo check on windows/mac CI +- Add link to Deflate64 +- Show method for individual files in jean ls --verbose +- Add Deflate64 method + test file (doesn't support it yet) +- Use num-enum crate +- Use cargo-hack --feature-powerset +- Switch to flate2 (with oxide backend) +- Add tracing-subscriber to jean, add more tracing around eocdr parsing +- Upgrade appnote +- Add extra output to jean to figure out why rc-zip doesn't detect this file as zip64 +- Check docs in CI, deny warnings +- Group use std directives +- Refactor StoredEntry a little bit +- Merge branch 'main' into sanitize-entry-name +- [**breaking**] Bump major version because we broke the API +- Does this unbreak caching? +- Use extra github token +- Use sccache action, run on macOS too +- Don't publish jean +- Add release-plz flow +- Fix clippy lints +- Merge branch 'main' into main +- Upgrade minor version dependencies +- Upgrade dependencies +- Don't use deprecated chrono method +- Commit Cargo.lock # Changelog diff --git a/Cargo.lock b/Cargo.lock index 23cba49..405b3dc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -637,7 +637,7 @@ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" [[package]] name = "rc-zip" -version = "2.0.1" +version = "3.0.0" dependencies = [ "byteorder", "bzip2", diff --git a/Cargo.toml b/Cargo.toml index aa7ebd1..b42eb89 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rc-zip" -version = "2.0.1" +version = "3.0.0" description = "zip reading" repository = "https://github.com/fasterthanlime/rc-zip" license = "Apache-2.0 OR MIT"