diff --git a/Cargo.lock b/Cargo.lock index ec2ed3d..d430eae 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -769,7 +769,7 @@ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" [[package]] name = "rc-zip" -version = "5.1.0" +version = "5.1.1" dependencies = [ "bzip2", "cfg-if", @@ -794,7 +794,7 @@ dependencies = [ [[package]] name = "rc-zip-sync" -version = "4.1.0" +version = "4.2.0" dependencies = [ "cfg-if", "chrono", @@ -810,7 +810,7 @@ dependencies = [ [[package]] name = "rc-zip-tokio" -version = "4.1.0" +version = "4.2.0" dependencies = [ "futures-util", "oval", diff --git a/rc-zip-sync/CHANGELOG.md b/rc-zip-sync/CHANGELOG.md index 6551b75..80757c6 100644 --- a/rc-zip-sync/CHANGELOG.md +++ b/rc-zip-sync/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [4.2.0](https://github.com/bearcove/rc-zip/compare/rc-zip-sync-v4.1.0...rc-zip-sync-v4.2.0) - 2024-09-04 + +### Added +- Add logo + ## [4.1.0](https://github.com/fasterthanlime/rc-zip/compare/rc-zip-sync-v4.0.1...rc-zip-sync-v4.1.0) - 2024-03-19 ### Added diff --git a/rc-zip-sync/Cargo.toml b/rc-zip-sync/Cargo.toml index 8a85a90..66746c3 100644 --- a/rc-zip-sync/Cargo.toml +++ b/rc-zip-sync/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rc-zip-sync" -version = "4.1.0" +version = "4.2.0" description = "Synchronous zip reading on top of rc-zip" repository = "https://github.com/fasterthanlime/rc-zip" license = "Apache-2.0 OR MIT" @@ -21,7 +21,7 @@ path = "examples/jean.rs" [dependencies] positioned-io = { version = "0.3.3", optional = true } -rc-zip = { version = "5.1.0", path = "../rc-zip" } +rc-zip = { version = "5.1.1", path = "../rc-zip" } oval = "2.0.0" tracing = "0.1.40" @@ -40,5 +40,5 @@ clap = { version = "4.4.18", features = ["derive"] } humansize = "2.1.3" indicatif = "0.17.7" tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } -rc-zip = { version = "5.1.0", path = "../rc-zip", features = ["corpus"] } +rc-zip = { version = "5.1.1", path = "../rc-zip", features = ["corpus"] } cfg-if = "1.0.0" diff --git a/rc-zip-tokio/CHANGELOG.md b/rc-zip-tokio/CHANGELOG.md index f28aeec..477d4cb 100644 --- a/rc-zip-tokio/CHANGELOG.md +++ b/rc-zip-tokio/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [4.2.0](https://github.com/bearcove/rc-zip/compare/rc-zip-tokio-v4.1.0...rc-zip-tokio-v4.2.0) - 2024-09-04 + +### Added +- Add logo + ## [4.1.0](https://github.com/fasterthanlime/rc-zip/compare/rc-zip-tokio-v4.0.1...rc-zip-tokio-v4.1.0) - 2024-03-19 ### Added diff --git a/rc-zip-tokio/Cargo.toml b/rc-zip-tokio/Cargo.toml index 159f73e..fec7f79 100644 --- a/rc-zip-tokio/Cargo.toml +++ b/rc-zip-tokio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rc-zip-tokio" -version = "4.1.0" +version = "4.2.0" 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.0", path = "../rc-zip" } +rc-zip = { version = "5.1.1", 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" } @@ -35,5 +35,5 @@ zstd = ["rc-zip/zstd"] [dev-dependencies] tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } -rc-zip = { version = "5.1.0", path = "../rc-zip", features = ["corpus"] } +rc-zip = { version = "5.1.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 4b6e0ba..b14b919 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.1.1](https://github.com/bearcove/rc-zip/compare/rc-zip-v5.1.0...rc-zip-v5.1.1) - 2024-09-04 + +### Other +- Add rc-zip logo to main crate, too + ## [5.1.0](https://github.com/fasterthanlime/rc-zip/compare/rc-zip-v5.0.1...rc-zip-v5.1.0) - 2024-03-19 ### Added diff --git a/rc-zip/Cargo.toml b/rc-zip/Cargo.toml index 6c1d903..9b81905 100644 --- a/rc-zip/Cargo.toml +++ b/rc-zip/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rc-zip" -version = "5.1.0" +version = "5.1.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"