Skip to content

Commit 4e9b296

Browse files
chore: release
1 parent 48a902e commit 4e9b296

File tree

9 files changed

+37
-13
lines changed

9 files changed

+37
-13
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rc-zip-cli/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.1.2](https://github.com/bearcove/rc-zip/compare/rc-zip-cli-v1.1.1...rc-zip-cli-v1.1.2) - 2025-03-02
11+
12+
### Other
13+
14+
- update Cargo.lock dependencies
15+
1016
## [1.1.1](https://github.com/bearcove/rc-zip/compare/rc-zip-cli-v1.1.0...rc-zip-cli-v1.1.1) - 2025-02-05
1117

1218
### Other

rc-zip-cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rc-zip-cli"
3-
version = "1.1.1"
3+
version = "1.1.2"
44
description = "A sample zip decompressor based on rc-zip"
55
license = "Apache-2.0 OR MIT"
66
authors = ["Amos Wenger <[email protected]>"]
@@ -19,8 +19,8 @@ name = "rc-zip-cli"
1919
path = "src/main.rs"
2020

2121
[dependencies]
22-
rc-zip = { version = "5.3.0", path = "../rc-zip", features = ["corpus"] }
23-
rc-zip-sync = { version = "4.2.5", path = "../rc-zip-sync", features = [
22+
rc-zip = { version = "5.3.1", path = "../rc-zip", features = ["corpus"] }
23+
rc-zip-sync = { version = "4.2.6", path = "../rc-zip-sync", features = [
2424
"bzip2",
2525
"deflate64",
2626
"lzma",

rc-zip-sync/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [4.2.6](https://github.com/bearcove/rc-zip/compare/rc-zip-sync-v4.2.5...rc-zip-sync-v4.2.6) - 2025-03-02
10+
11+
### Other
12+
13+
- updated the following local packages: rc-zip
14+
915
## [4.2.5](https://github.com/bearcove/rc-zip/compare/rc-zip-sync-v4.2.4...rc-zip-sync-v4.2.5) - 2025-02-05
1016

1117
### Other

rc-zip-sync/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rc-zip-sync"
3-
version = "4.2.5"
3+
version = "4.2.6"
44
description = "Synchronous zip reading on top of rc-zip"
55
repository = "https://github.com/fasterthanlime/rc-zip"
66
license = "Apache-2.0 OR MIT"
@@ -17,7 +17,7 @@ path = "src/lib.rs"
1717

1818
[dependencies]
1919
positioned-io = { version = "0.3.3", optional = true }
20-
rc-zip = { version = "5.3.0", path = "../rc-zip" }
20+
rc-zip = { version = "5.3.1", path = "../rc-zip" }
2121
oval = "2.0.0"
2222
tracing = "0.1.40"
2323

rc-zip-tokio/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [4.2.5](https://github.com/bearcove/rc-zip/compare/rc-zip-tokio-v4.2.4...rc-zip-tokio-v4.2.5) - 2025-03-02
10+
11+
### Other
12+
13+
- updated the following local packages: rc-zip, rc-zip
14+
915
## [4.2.4](https://github.com/bearcove/rc-zip/compare/rc-zip-tokio-v4.2.3...rc-zip-tokio-v4.2.4) - 2025-02-05
1016

1117
### Other

rc-zip-tokio/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rc-zip-tokio"
3-
version = "4.2.4"
3+
version = "4.2.5"
44
description = "Asynchronous zip reading on top of rc-zip (for tokio I/O traits)"
55
repository = "https://github.com/fasterthanlime/rc-zip"
66
license = "Apache-2.0 OR MIT"
@@ -17,7 +17,7 @@ name = "rc_zip_tokio"
1717
path = "src/lib.rs"
1818

1919
[dependencies]
20-
rc-zip = { version = "5.3.0", path = "../rc-zip" }
20+
rc-zip = { version = "5.3.1", path = "../rc-zip" }
2121
positioned-io = { version = "0.3.3" }
2222
tokio = { version = "1.35.1", features = ["fs", "io-util", "rt-multi-thread"] }
2323
futures-util = { version = "0.3.30" }
@@ -34,5 +34,5 @@ bzip2 = ["rc-zip/bzip2"]
3434
zstd = ["rc-zip/zstd"]
3535

3636
[dev-dependencies]
37-
rc-zip = { version = "5.3.0", path = "../rc-zip", features = ["corpus"] }
37+
rc-zip = { version = "5.3.1", path = "../rc-zip", features = ["corpus"] }
3838
tokio = { version = "1.35.1", features = ["rt", "macros"] }

rc-zip/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [5.3.1](https://github.com/bearcove/rc-zip/compare/rc-zip-v5.3.0...rc-zip-v5.3.1) - 2025-03-02
10+
11+
### Other
12+
13+
- Bump bzip2 to v0.5.0
14+
915
## [5.3.0](https://github.com/bearcove/rc-zip/compare/rc-zip-v5.2.0...rc-zip-v5.3.0) - 2025-02-05
1016

1117
### Added

rc-zip/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rc-zip"
3-
version = "5.3.0"
3+
version = "5.3.1"
44
description = "An I/O-agnostic implementation of the zip file format"
55
repository = "https://github.com/fasterthanlime/rc-zip"
66
license = "Apache-2.0 OR MIT"

0 commit comments

Comments
 (0)