Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
Signed-off-by: Amos <7998310+fasterthanlime@users.noreply.github.com>
  • Loading branch information
fasterthanlime committed Mar 19, 2024
1 parent 375c4d6 commit 1ce6281
Show file tree
Hide file tree
Showing 7 changed files with 55 additions and 10 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

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

13 changes: 13 additions & 0 deletions rc-zip-sync/CHANGELOG.md
Expand Up @@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [4.1.0](https://github.com/fasterthanlime/rc-zip/compare/rc-zip-sync-v4.0.1...rc-zip-sync-v4.1.0) - 2024-03-19

### Added
- Measure code coverage differently ([#79](https://github.com/fasterthanlime/rc-zip/pull/79))
- Run one-byte-read tests in CI in release ([#77](https://github.com/fasterthanlime/rc-zip/pull/77))
- rc-zip-tokio: Re-use cursor if it's at the right offset already ([#71](https://github.com/fasterthanlime/rc-zip/pull/71))

### Fixed
- lzma_dec: count all input in outcome.bytes_read

### Other
- release ([#68](https://github.com/fasterthanlime/rc-zip/pull/68))

## [4.0.1](https://github.com/fasterthanlime/rc-zip/compare/rc-zip-sync-v4.0.0...rc-zip-sync-v4.0.1) - 2024-03-12

### Other
Expand Down
6 changes: 3 additions & 3 deletions rc-zip-sync/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rc-zip-sync"
version = "4.0.1"
version = "4.1.0"
description = "Synchronous zip reading on top of rc-zip"
repository = "https://github.com/fasterthanlime/rc-zip"
license = "Apache-2.0 OR MIT"
Expand All @@ -21,7 +21,7 @@ path = "examples/jean.rs"

[dependencies]
positioned-io = { version = "0.3.3", optional = true }
rc-zip = { version = "5.0.1", path = "../rc-zip" }
rc-zip = { version = "5.1.0", path = "../rc-zip" }
oval = "2.0.0"
tracing = "0.1.40"

Expand All @@ -40,5 +40,5 @@ clap = { version = "4.4.18", features = ["derive"] }
humansize = "2.1.3"
indicatif = "0.17.7"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
rc-zip = { version = "5.0.1", path = "../rc-zip", features = ["corpus"] }
rc-zip = { version = "5.1.0", path = "../rc-zip", features = ["corpus"] }
cfg-if = "1.0.0"
17 changes: 17 additions & 0 deletions rc-zip-tokio/CHANGELOG.md
Expand Up @@ -6,6 +6,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [4.1.0](https://github.com/fasterthanlime/rc-zip/compare/rc-zip-tokio-v4.0.1...rc-zip-tokio-v4.1.0) - 2024-03-19

### Added
- Measure code coverage differently ([#79](https://github.com/fasterthanlime/rc-zip/pull/79))
- futures => futures_util (fewer deps)
- Run one-byte-read tests in CI in release ([#77](https://github.com/fasterthanlime/rc-zip/pull/77))
- More efficient implementation
- rc-zip-tokio: Re-use cursor if it's at the right offset already ([#71](https://github.com/fasterthanlime/rc-zip/pull/71))

### Fixed
- lzma_dec: count all input in outcome.bytes_read
- Don't give up on reading local header when given short reads
- fix arafc bug I just introduced

### Other
- release ([#68](https://github.com/fasterthanlime/rc-zip/pull/68))

## [4.0.1](https://github.com/fasterthanlime/rc-zip/compare/rc-zip-tokio-v4.0.0...rc-zip-tokio-v4.0.1) - 2024-03-12

### Other
Expand Down
6 changes: 3 additions & 3 deletions rc-zip-tokio/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rc-zip-tokio"
version = "4.0.1"
version = "4.1.0"
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.0.1", path = "../rc-zip" }
rc-zip = { version = "5.1.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 @@ -35,5 +35,5 @@ zstd = ["rc-zip/zstd"]

[dev-dependencies]
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
rc-zip = { version = "5.0.1", path = "../rc-zip", features = ["corpus"] }
rc-zip = { version = "5.1.0", path = "../rc-zip", features = ["corpus"] }
tokio = { version = "1.35.1", features = ["rt", "macros"] }
15 changes: 15 additions & 0 deletions rc-zip/CHANGELOG.md
Expand Up @@ -6,6 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [5.1.0](https://github.com/fasterthanlime/rc-zip/compare/rc-zip-v5.0.1...rc-zip-v5.1.0) - 2024-03-19

### Added
- Measure code coverage differently ([#79](https://github.com/fasterthanlime/rc-zip/pull/79))
- Run one-byte-read tests in CI in release ([#77](https://github.com/fasterthanlime/rc-zip/pull/77))
- Resolve winnow + chrono deprecations ([#70](https://github.com/fasterthanlime/rc-zip/pull/70))

### Fixed
- lzma_dec: count all input in outcome.bytes_read
- In Entry FSM, don't recurse infinitely if buffer doesn't contain full local header
- Fix doc comment for read_offset

### Other
- Fix zstd bug similar to lzma bug

## [5.0.1](https://github.com/fasterthanlime/rc-zip/compare/rc-zip-v5.0.0...rc-zip-v5.0.1) - 2024-03-12

### Other
Expand Down
2 changes: 1 addition & 1 deletion rc-zip/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rc-zip"
version = "5.0.1"
version = "5.1.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

0 comments on commit 1ce6281

Please sign in to comment.