diff --git a/Cargo.lock b/Cargo.lock index eaa3efb..1206d50 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -783,7 +783,7 @@ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" [[package]] name = "rc-zip" -version = "2.0.1" +version = "3.0.0" dependencies = [ "bzip2", "cfg-if", diff --git a/rc-zip-sync/CHANGELOG.md b/rc-zip-sync/CHANGELOG.md new file mode 100644 index 0000000..72a0b9a --- /dev/null +++ b/rc-zip-sync/CHANGELOG.md @@ -0,0 +1,12 @@ +# 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] + +## [2.0.1](https://github.com/fasterthanlime/rc-zip/releases/tag/rc-zip-sync-v2.0.1) - 2024-02-02 + +### Other +- Introduce rc-zip-sync, rc-zip-tokio ([#60](https://github.com/fasterthanlime/rc-zip/pull/60)) diff --git a/rc-zip-sync/Cargo.toml b/rc-zip-sync/Cargo.toml index 8974690..2d29bee 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 = "2.0.1", path = "../rc-zip" } +rc-zip = { version = "3.0.0", 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 = "2.0.1", path = "../rc-zip", features = ["corpus"] } +rc-zip = { version = "3.0.0", path = "../rc-zip", features = ["corpus"] } cfg-if = "1.0.0" diff --git a/rc-zip-tokio/CHANGELOG.md b/rc-zip-tokio/CHANGELOG.md new file mode 100644 index 0000000..119e0ea --- /dev/null +++ b/rc-zip-tokio/CHANGELOG.md @@ -0,0 +1,12 @@ +# 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] + +## [2.0.1](https://github.com/fasterthanlime/rc-zip/releases/tag/rc-zip-tokio-v2.0.1) - 2024-02-02 + +### Other +- Introduce rc-zip-sync, rc-zip-tokio ([#60](https://github.com/fasterthanlime/rc-zip/pull/60)) diff --git a/rc-zip-tokio/Cargo.toml b/rc-zip-tokio/Cargo.toml index ee65588..cc8d25d 100644 --- a/rc-zip-tokio/Cargo.toml +++ b/rc-zip-tokio/Cargo.toml @@ -16,7 +16,7 @@ name = "rc_zip_tokio" path = "src/lib.rs" [dependencies] -rc-zip = { version = "2.0.1", path = "../rc-zip" } +rc-zip = { version = "3.0.0", 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" } @@ -35,5 +35,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 = "2.0.1", path = "../rc-zip", features = ["corpus"] } -tokio = { version = "1.35.1", features = ["rt", "macros"] } \ No newline at end of file +rc-zip = { version = "3.0.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 new file mode 100644 index 0000000..4a2b171 --- /dev/null +++ b/rc-zip/CHANGELOG.md @@ -0,0 +1,12 @@ +# 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/rc-zip-v2.0.1...rc-zip-v3.0.0) - 2024-02-02 + +### Other +- Introduce rc-zip-sync, rc-zip-tokio ([#60](https://github.com/fasterthanlime/rc-zip/pull/60)) diff --git a/rc-zip/Cargo.toml b/rc-zip/Cargo.toml index 9177949..c2a46be 100644 --- a/rc-zip/Cargo.toml +++ b/rc-zip/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rc-zip" -version = "2.0.1" +version = "3.0.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"