From 39fab96ab8d4b8b2135fbc6cd98c242d7a617e41 Mon Sep 17 00:00:00 2001 From: Amos Wenger Date: Tue, 12 Mar 2024 09:41:30 +0100 Subject: [PATCH] chore: release --- Cargo.lock | 2 +- rc-zip-sync/Cargo.toml | 4 ++-- rc-zip-tokio/Cargo.toml | 4 ++-- rc-zip/CHANGELOG.md | 5 +++++ rc-zip/Cargo.toml | 2 +- 5 files changed, 11 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9f367e4..fedd4ea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -821,7 +821,7 @@ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" [[package]] name = "rc-zip" -version = "5.0.0" +version = "5.0.1" dependencies = [ "bzip2", "cfg-if", diff --git a/rc-zip-sync/Cargo.toml b/rc-zip-sync/Cargo.toml index d9d1c8c..8c71d72 100644 --- a/rc-zip-sync/Cargo.toml +++ b/rc-zip-sync/Cargo.toml @@ -21,7 +21,7 @@ path = "examples/jean.rs" [dependencies] positioned-io = { version = "0.3.3", optional = true } -rc-zip = { version = "5.0.0", path = "../rc-zip" } +rc-zip = { version = "5.0.1", path = "../rc-zip" } oval = "2.0.0" tracing = "0.1.40" @@ -41,5 +41,5 @@ humansize = "2.1.3" indicatif = "0.17.7" test-log = { version = "0.2.14", default-features = false, features = ["tracing-subscriber", "trace"] } tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } -rc-zip = { version = "5.0.0", path = "../rc-zip", features = ["corpus"] } +rc-zip = { version = "5.0.1", path = "../rc-zip", features = ["corpus"] } cfg-if = "1.0.0" diff --git a/rc-zip-tokio/Cargo.toml b/rc-zip-tokio/Cargo.toml index b32b326..437485a 100644 --- a/rc-zip-tokio/Cargo.toml +++ b/rc-zip-tokio/Cargo.toml @@ -17,7 +17,7 @@ name = "rc_zip_tokio" path = "src/lib.rs" [dependencies] -rc-zip = { version = "5.0.0", path = "../rc-zip" } +rc-zip = { version = "5.0.1", path = "../rc-zip" } positioned-io = { version = "0.3.3" } tokio = { version = "1.35.1", features = ["fs", "io-util", "rt-multi-thread"] } futures = { version = "0.3.30" } @@ -36,5 +36,5 @@ zstd = ["rc-zip/zstd"] [dev-dependencies] test-log = { version = "0.2.14", default-features = false, features = ["tracing-subscriber", "trace"] } tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } -rc-zip = { version = "5.0.0", path = "../rc-zip", features = ["corpus"] } +rc-zip = { version = "5.0.1", 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 b68116a..099d95e 100644 --- a/rc-zip/CHANGELOG.md +++ b/rc-zip/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [5.0.1](https://github.com/fasterthanlime/rc-zip/compare/rc-zip-v5.0.0...rc-zip-v5.0.1) - 2024-03-12 + +### Other +- Point rc-zip crate's README to its own README? release-plz is confused + ## [5.0.0](https://github.com/fasterthanlime/rc-zip/compare/rc-zip-v4.0.0...rc-zip-v5.0.0) - 2024-03-12 ### Added diff --git a/rc-zip/Cargo.toml b/rc-zip/Cargo.toml index 2da13de..80b731b 100644 --- a/rc-zip/Cargo.toml +++ b/rc-zip/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rc-zip" -version = "5.0.0" +version = "5.0.1" description = "An I/O-agnostic implementation of the zip file format" repository = "https://github.com/fasterthanlime/rc-zip" license = "Apache-2.0 OR MIT"