WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit 59d0c6f

Browse files
chore: release (#84)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 8625336 commit 59d0c6f

File tree

7 files changed

+25
-10
lines changed

7 files changed

+25
-10
lines changed

Cargo.lock

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

rc-zip-sync/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [4.2.1](https://github.com/bearcove/rc-zip/compare/rc-zip-sync-v4.2.0...rc-zip-sync-v4.2.1) - 2024-09-05
10+
11+
### Other
12+
- Update logo attribution
13+
914
## [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
1015

1116
### Added

rc-zip-sync/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-sync"
3-
version = "4.2.0"
3+
version = "4.2.1"
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"
@@ -21,7 +21,7 @@ path = "examples/jean.rs"
2121

2222
[dependencies]
2323
positioned-io = { version = "0.3.3", optional = true }
24-
rc-zip = { version = "5.1.1", path = "../rc-zip" }
24+
rc-zip = { version = "5.1.2", path = "../rc-zip" }
2525
oval = "2.0.0"
2626
tracing = "0.1.40"
2727

@@ -40,5 +40,5 @@ clap = { version = "4.4.18", features = ["derive"] }
4040
humansize = "2.1.3"
4141
indicatif = "0.17.7"
4242
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
43-
rc-zip = { version = "5.1.1", path = "../rc-zip", features = ["corpus"] }
43+
rc-zip = { version = "5.1.2", path = "../rc-zip", features = ["corpus"] }
4444
cfg-if = "1.0.0"

rc-zip-tokio/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [4.2.1](https://github.com/bearcove/rc-zip/compare/rc-zip-tokio-v4.2.0...rc-zip-tokio-v4.2.1) - 2024-09-05
10+
11+
### Other
12+
- Update logo attribution
13+
914
## [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
1015

1116
### Added

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.0"
3+
version = "4.2.1"
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.1.1", path = "../rc-zip" }
20+
rc-zip = { version = "5.1.2", 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" }
@@ -35,5 +35,5 @@ zstd = ["rc-zip/zstd"]
3535

3636
[dev-dependencies]
3737
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
38-
rc-zip = { version = "5.1.1", path = "../rc-zip", features = ["corpus"] }
38+
rc-zip = { version = "5.1.2", path = "../rc-zip", features = ["corpus"] }
3939
tokio = { version = "1.35.1", features = ["rt", "macros"] }

rc-zip/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [5.1.2](https://github.com/bearcove/rc-zip/compare/rc-zip-v5.1.1...rc-zip-v5.1.2) - 2024-09-05
10+
11+
### Other
12+
- Update logo attribution
13+
914
## [5.1.1](https://github.com/bearcove/rc-zip/compare/rc-zip-v5.1.0...rc-zip-v5.1.1) - 2024-09-04
1015

1116
### Other

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.1.1"
3+
version = "5.1.2"
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)