diff --git a/Cargo.lock b/Cargo.lock index dfc8ee9..297738f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -806,7 +806,7 @@ dependencies = [ [[package]] name = "rc-zip-sync" -version = "4.2.2" +version = "4.2.3" dependencies = [ "oval", "positioned-io", diff --git a/rc-zip-cli/CHANGELOG.md b/rc-zip-cli/CHANGELOG.md new file mode 100644 index 0000000..6ca7a81 --- /dev/null +++ b/rc-zip-cli/CHANGELOG.md @@ -0,0 +1,15 @@ +# 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] + +## [1.0.0](https://github.com/bearcove/rc-zip/releases/tag/rc-zip-cli-v1.0.0) - 2024-10-08 + +### Other + +- Add missing readme +- Set up cargo-dist diff --git a/rc-zip-cli/Cargo.toml b/rc-zip-cli/Cargo.toml index ffd058d..a271f7f 100644 --- a/rc-zip-cli/Cargo.toml +++ b/rc-zip-cli/Cargo.toml @@ -14,7 +14,7 @@ path = "src/main.rs" [dependencies] rc-zip = { version = "5.1.3", path = "../rc-zip", features = ["corpus"] } -rc-zip-sync = { version = "4.2.2", path = "../rc-zip-sync", features = [ +rc-zip-sync = { version = "4.2.3", path = "../rc-zip-sync", features = [ "bzip2", "deflate64", "lzma", diff --git a/rc-zip-sync/CHANGELOG.md b/rc-zip-sync/CHANGELOG.md index e02dd94..1d46a1c 100644 --- a/rc-zip-sync/CHANGELOG.md +++ b/rc-zip-sync/CHANGELOG.md @@ -6,6 +6,13 @@ 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-sync-v4.2.2...rc-zip-sync-v4.2.3) - 2024-10-08 + +### Other + +- Remove dead example +- Make jean a workspace member rather than an example + ## [4.2.2](https://github.com/bearcove/rc-zip/compare/rc-zip-sync-v4.2.1...rc-zip-sync-v4.2.2) - 2024-09-17 ### Other diff --git a/rc-zip-sync/Cargo.toml b/rc-zip-sync/Cargo.toml index 0dc2a73..7ac8adb 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.2" +version = "4.2.3" description = "Synchronous zip reading on top of rc-zip" repository = "https://github.com/fasterthanlime/rc-zip" license = "Apache-2.0 OR MIT"