Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ futures-util = "0.3"
thiserror = "2"
tracing = "0.1"
zcash_protocol = "0.10.2"
zcash_client_backend = { version = "0.24.0-rc.7", features = [
zcash_client_backend = { version = "0.24.0", features = [
"lightwalletd-tonic-tls-webpki-roots",
"orchard",
"tor",
"transparent-inputs",
"unstable",
] }
zcash_client_sqlite = { version = "0.22.0-rc.8", features = ["orchard", "transparent-inputs", "unstable", "serde"] }
zcash_client_sqlite = { version = "0.22.0", features = ["orchard", "transparent-inputs", "unstable", "serde"] }
zcash_keys = { version = "0.16.1", features = ["orchard"] }
rusqlite = "0.37"
# Issue #4: slipstream's own `ext_slipstream_*` schema rides the wallet DB's
Expand Down
7 changes: 7 additions & 0 deletions core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ workspace.

## [Unreleased]

## [0.2.0] - 2026-08-19

### Changed
- Updated to `zcash_client_backend-0.24`, `zcash_client_sqlite-0.22` final releases.
The 0.1.x release series was published against release candidate versions of these
crates.

## [0.1.1] - 2026-08-07

Initial public release of the `zodl-slipstream` crate. This crate provides an
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zodl-slipstream"
description = "A high-performance zcash light wallet sync engine"
version = "0.1.1"
version = "0.2.0"
authors = [
"Lukas Korba <lukas.korba@seznam.cz>",
"Kris Nuttycombe <kris@electriccoin.co>"
Expand Down