Skip to content

Commit bdb30cc

Browse files
authored
Extract object-hash types into an object_hash module (#785)
1 parent 86983a3 commit bdb30cc

31 files changed

Lines changed: 625 additions & 514 deletions

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

quilt-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ path = "src/main.rs"
1717

1818
[dependencies]
1919
# Library dependencies
20-
quilt-rs = { path = "../quilt-rs", version = "0.33.0-alpha1" }
20+
quilt-rs = { path = "../quilt-rs", version = "0.34.0-alpha1" }
2121
quilt-uri = { path = "../quilt-uri", version = "0.3.0" }
2222

2323
# CLI-specific dependencies
@@ -35,7 +35,7 @@ tracing-subscriber.workspace = true
3535
# Pull quilt-rs with the `testing` feature so CLI tests can drive flows against
3636
# the in-memory mock remote. Kept out of the normal dependency above so the
3737
# mock never leaks into release builds.
38-
quilt-rs = { path = "../quilt-rs", version = "0.33.0-alpha1", features = ["testing"] }
38+
quilt-rs = { path = "../quilt-rs", version = "0.34.0-alpha1", features = ["testing"] }
3939
test-log.workspace = true
4040

4141
# pkg-url overridden: workspace tags as `quilt-cli/v<version>`, not

quilt-rs/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@
99
<!-- markdownlint-disable MD013 -->
1010
# Changelog
1111

12+
## [v0.34.0-alpha1] - 2026-07-20
13+
14+
### Changed
15+
16+
- The per-object hash types moved from the `checksum` module to a new `object_hash` module — `checksum` now holds only the storage-aware `calculate_hash` / `verify_hash` / `refresh_hash` helpers — and `Hash::from_file` became `Hash::from_reader`, taking an async reader plus an explicit length instead of a `tokio::fs::File` (<https://github.com/quiltdata/quilt-rs/pull/785>)
17+
1218
## [v0.33.0] - 2026-07-14
1319

1420
### Added

quilt-rs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "quilt-rs"
33
description = "Rust library for accessing Quilt data packages."
44

55
# Inherit from workspace
6-
version = "0.33.0"
6+
version = "0.34.0-alpha1"
77
edition.workspace = true
88
rust-version.workspace = true
99
license.workspace = true

0 commit comments

Comments
 (0)