Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release #90

Merged
merged 1 commit into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions rc-zip-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions rc-zip-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
Expand All @@ -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",
Expand Down
6 changes: 6 additions & 0 deletions rc-zip-sync/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions rc-zip-sync/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"

Expand Down
6 changes: 6 additions & 0 deletions rc-zip-tokio/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions rc-zip-tokio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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" }
Expand All @@ -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"] }
6 changes: 6 additions & 0 deletions rc-zip/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion rc-zip/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
Loading