Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
Signed-off-by: Amos <[email protected]>
  • Loading branch information
fasterthanlime committed Feb 2, 2024
1 parent 2a0d894 commit 7de899f
Show file tree
Hide file tree
Showing 7 changed files with 43 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

12 changes: 12 additions & 0 deletions rc-zip-sync/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# 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]

## [2.0.1](https://github.com/fasterthanlime/rc-zip/releases/tag/rc-zip-sync-v2.0.1) - 2024-02-02

### Other
- Introduce rc-zip-sync, rc-zip-tokio ([#60](https://github.com/fasterthanlime/rc-zip/pull/60))
4 changes: 2 additions & 2 deletions rc-zip-sync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ path = "examples/jean.rs"

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

Expand All @@ -41,5 +41,5 @@ humansize = "2.1.3"
indicatif = "0.17.7"
test-log = { version = "0.2.14", default-features = false, features = ["tracing-subscriber", "trace"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
rc-zip = { version = "2.0.1", path = "../rc-zip", features = ["corpus"] }
rc-zip = { version = "3.0.0", path = "../rc-zip", features = ["corpus"] }
cfg-if = "1.0.0"
12 changes: 12 additions & 0 deletions rc-zip-tokio/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# 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]

## [2.0.1](https://github.com/fasterthanlime/rc-zip/releases/tag/rc-zip-tokio-v2.0.1) - 2024-02-02

### Other
- Introduce rc-zip-sync, rc-zip-tokio ([#60](https://github.com/fasterthanlime/rc-zip/pull/60))
6 changes: 3 additions & 3 deletions rc-zip-tokio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ name = "rc_zip_tokio"
path = "src/lib.rs"

[dependencies]
rc-zip = { version = "2.0.1", path = "../rc-zip" }
rc-zip = { version = "3.0.0", path = "../rc-zip" }
positioned-io = { version = "0.3.3" }
tokio = { version = "1.35.1", features = ["fs", "io-util", "rt-multi-thread"] }
futures = { version = "0.3.30" }
Expand All @@ -35,5 +35,5 @@ zstd = ["rc-zip/zstd"]
[dev-dependencies]
test-log = { version = "0.2.14", default-features = false, features = ["tracing-subscriber", "trace"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
rc-zip = { version = "2.0.1", path = "../rc-zip", features = ["corpus"] }
tokio = { version = "1.35.1", features = ["rt", "macros"] }
rc-zip = { version = "3.0.0", path = "../rc-zip", features = ["corpus"] }
tokio = { version = "1.35.1", features = ["rt", "macros"] }
12 changes: 12 additions & 0 deletions rc-zip/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# 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]

## [3.0.0](https://github.com/fasterthanlime/rc-zip/compare/rc-zip-v2.0.1...rc-zip-v3.0.0) - 2024-02-02

### Other
- Introduce rc-zip-sync, rc-zip-tokio ([#60](https://github.com/fasterthanlime/rc-zip/pull/60))
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 = "2.0.1"
version = "3.0.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 7de899f

Please sign in to comment.