From 1259da8647dd51a5a1f8b529c288f42169529746 Mon Sep 17 00:00:00 2001 From: Amos Wenger Date: Tue, 17 Dec 2024 21:06:22 +0100 Subject: [PATCH] chore: release --- Cargo.lock | 8 ++++---- rc-zip-cli/CHANGELOG.md | 10 ++++++++++ rc-zip-cli/Cargo.toml | 6 +++--- rc-zip-sync/CHANGELOG.md | 6 ++++++ rc-zip-sync/Cargo.toml | 4 ++-- rc-zip-tokio/CHANGELOG.md | 6 ++++++ rc-zip-tokio/Cargo.toml | 6 +++--- rc-zip/CHANGELOG.md | 6 ++++++ rc-zip/Cargo.toml | 2 +- 9 files changed, 41 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 16fb481..5fde5a0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -769,7 +769,7 @@ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" [[package]] name = "rc-zip" -version = "5.1.3" +version = "5.2.0" dependencies = [ "bzip2", "chardetng", @@ -793,7 +793,7 @@ dependencies = [ [[package]] name = "rc-zip-cli" -version = "1.0.1" +version = "1.1.0" dependencies = [ "cfg-if", "clap", @@ -806,7 +806,7 @@ dependencies = [ [[package]] name = "rc-zip-sync" -version = "4.2.3" +version = "4.2.4" dependencies = [ "oval", "positioned-io", @@ -816,7 +816,7 @@ dependencies = [ [[package]] name = "rc-zip-tokio" -version = "4.2.2" +version = "4.2.3" dependencies = [ "futures-util", "oval", diff --git a/rc-zip-cli/CHANGELOG.md b/rc-zip-cli/CHANGELOG.md index 5427f29..481c73c 100644 --- a/rc-zip-cli/CHANGELOG.md +++ b/rc-zip-cli/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.1.0](https://github.com/bearcove/rc-zip/compare/rc-zip-cli-v1.0.1...rc-zip-cli-v1.1.0) - 2024-12-17 + +### Added + +- Export DecompressOutcome + +### Other + +- Make cargo-dist play nice with release-plz + ## [1.0.1](https://github.com/bearcove/rc-zip/compare/rc-zip-cli-v1.0.0...rc-zip-cli-v1.0.1) - 2024-10-08 ### Other diff --git a/rc-zip-cli/Cargo.toml b/rc-zip-cli/Cargo.toml index ef6945e..aec3618 100644 --- a/rc-zip-cli/Cargo.toml +++ b/rc-zip-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rc-zip-cli" -version = "1.0.1" +version = "1.1.0" description = "A sample zip decompressor based on rc-zip" license = "Apache-2.0 OR MIT" authors = ["Amos Wenger "] @@ -19,8 +19,8 @@ name = "rc-zip-cli" path = "src/main.rs" [dependencies] -rc-zip = { version = "5.1.3", path = "../rc-zip", features = ["corpus"] } -rc-zip-sync = { version = "4.2.3", path = "../rc-zip-sync", features = [ +rc-zip = { version = "5.2.0", path = "../rc-zip", features = ["corpus"] } +rc-zip-sync = { version = "4.2.4", path = "../rc-zip-sync", features = [ "bzip2", "deflate64", "lzma", diff --git a/rc-zip-sync/CHANGELOG.md b/rc-zip-sync/CHANGELOG.md index 1d46a1c..8e57c85 100644 --- a/rc-zip-sync/CHANGELOG.md +++ b/rc-zip-sync/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [4.2.4](https://github.com/bearcove/rc-zip/compare/rc-zip-sync-v4.2.3...rc-zip-sync-v4.2.4) - 2024-12-17 + +### Other + +- updated the following local packages: rc-zip + ## [4.2.3](https://github.com/bearcove/rc-zip/compare/rc-zip-sync-v4.2.2...rc-zip-sync-v4.2.3) - 2024-10-08 ### Other diff --git a/rc-zip-sync/Cargo.toml b/rc-zip-sync/Cargo.toml index 7ac8adb..e8870ca 100644 --- a/rc-zip-sync/Cargo.toml +++ b/rc-zip-sync/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rc-zip-sync" -version = "4.2.3" +version = "4.2.4" description = "Synchronous zip reading on top of rc-zip" repository = "https://github.com/fasterthanlime/rc-zip" license = "Apache-2.0 OR MIT" @@ -17,7 +17,7 @@ path = "src/lib.rs" [dependencies] positioned-io = { version = "0.3.3", optional = true } -rc-zip = { version = "5.1.3", path = "../rc-zip" } +rc-zip = { version = "5.2.0", path = "../rc-zip" } oval = "2.0.0" tracing = "0.1.40" diff --git a/rc-zip-tokio/CHANGELOG.md b/rc-zip-tokio/CHANGELOG.md index 6121e11..b5368d5 100644 --- a/rc-zip-tokio/CHANGELOG.md +++ b/rc-zip-tokio/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [4.2.3](https://github.com/bearcove/rc-zip/compare/rc-zip-tokio-v4.2.2...rc-zip-tokio-v4.2.3) - 2024-12-17 + +### Other + +- updated the following local packages: rc-zip, rc-zip + ## [4.2.2](https://github.com/bearcove/rc-zip/compare/rc-zip-tokio-v4.2.1...rc-zip-tokio-v4.2.2) - 2024-09-17 ### Other diff --git a/rc-zip-tokio/Cargo.toml b/rc-zip-tokio/Cargo.toml index 6b95c4b..df39d35 100644 --- a/rc-zip-tokio/Cargo.toml +++ b/rc-zip-tokio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rc-zip-tokio" -version = "4.2.2" +version = "4.2.3" description = "Asynchronous zip reading on top of rc-zip (for tokio I/O traits)" repository = "https://github.com/fasterthanlime/rc-zip" license = "Apache-2.0 OR MIT" @@ -17,7 +17,7 @@ name = "rc_zip_tokio" path = "src/lib.rs" [dependencies] -rc-zip = { version = "5.1.3", path = "../rc-zip" } +rc-zip = { version = "5.2.0", path = "../rc-zip" } positioned-io = { version = "0.3.3" } tokio = { version = "1.35.1", features = ["fs", "io-util", "rt-multi-thread"] } futures-util = { version = "0.3.30" } @@ -34,5 +34,5 @@ bzip2 = ["rc-zip/bzip2"] zstd = ["rc-zip/zstd"] [dev-dependencies] -rc-zip = { version = "5.1.3", path = "../rc-zip", features = ["corpus"] } +rc-zip = { version = "5.2.0", path = "../rc-zip", features = ["corpus"] } tokio = { version = "1.35.1", features = ["rt", "macros"] } diff --git a/rc-zip/CHANGELOG.md b/rc-zip/CHANGELOG.md index c53c890..97c8288 100644 --- a/rc-zip/CHANGELOG.md +++ b/rc-zip/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [5.2.0](https://github.com/bearcove/rc-zip/compare/rc-zip-v5.1.3...rc-zip-v5.2.0) - 2024-12-17 + +### Added + +- Export DecompressOutcome + ## [5.1.3](https://github.com/bearcove/rc-zip/compare/rc-zip-v5.1.2...rc-zip-v5.1.3) - 2024-09-17 ### Other diff --git a/rc-zip/Cargo.toml b/rc-zip/Cargo.toml index a5a65f6..a27e1d0 100644 --- a/rc-zip/Cargo.toml +++ b/rc-zip/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rc-zip" -version = "5.1.3" +version = "5.2.0" description = "An I/O-agnostic implementation of the zip file format" repository = "https://github.com/fasterthanlime/rc-zip" license = "Apache-2.0 OR MIT"