Skip to content

Commit

Permalink
release zcash-android-wallet-sdk version 2.2.1 (#1567)
Browse files Browse the repository at this point in the history
This release fixes a database migration error that could cause
a problem with wallet upgrade in some existing wallets.
  • Loading branch information
nuttycom authored Aug 22, 2024
1 parent dccf556 commit a4550c2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this library adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.2.1] - 2024-08-22

### Fixed
- A database migration misconfiguration that could result in problems with wallet
initialization was fixed.

## [2.2.0] - 2024-08-22

This release adds several important new features:
Expand Down
4 changes: 2 additions & 2 deletions backend-lib/Cargo.lock

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

2 changes: 1 addition & 1 deletion backend-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ orchard = "0.9"
sapling = { package = "sapling-crypto", version = "0.2", default-features = false }
zcash_address = "0.4"
zcash_client_backend = { version = "0.13", features = ["orchard", "tor", "transparent-inputs", "unstable"] }
zcash_client_sqlite = { version = "0.11", features = ["orchard", "transparent-inputs", "unstable"] }
zcash_client_sqlite = { version = "0.11.1", features = ["orchard", "transparent-inputs", "unstable"] }
zcash_primitives = "0.16"
zcash_proofs = "0.16"

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ZCASH_ASCII_GPG_KEY=
# Configures whether release is an unstable snapshot, therefore published to the snapshot repository.
IS_SNAPSHOT=true

LIBRARY_VERSION=2.2.0
LIBRARY_VERSION=2.2.1

# Kotlin compiler warnings can be considered errors, failing the build.
ZCASH_IS_TREAT_WARNINGS_AS_ERRORS=true
Expand Down

0 comments on commit a4550c2

Please sign in to comment.