Release 0.17.0-alpha.2

This commit is contained in:
Francisco Gindre 2022-10-31 08:37:11 -03:00
parent 201c777de0
commit 7f39d4864d
3 changed files with 8 additions and 5 deletions

View File

@ -15,7 +15,7 @@ let package = Package(
],
dependencies: [
.package(url: "https://github.com/grpc/grpc-swift.git", from: "1.8.0"),
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.13.0"),
.package(url: "https://github.com/stephencelis/SQLite.swift.git", Version(stringLiteral: "0.13.0")...Version(stringLiteral: "0.13.99")),
.package(name:"libzcashlc", url: "https://github.com/zcash-hackworks/zcash-light-client-ffi", from: "0.1.0-beta.1")
],
targets: [

View File

@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'ZcashLightClientKit'
s.version = '0.17.0-alpha.1'
s.version = '0.17.0-alpha.2'
s.summary = 'Zcash Light Client wallet SDK for iOS'
s.description = <<-DESC
@ -20,7 +20,7 @@ Pod::Spec.new do |s|
s.swift_version = '5.6'
s.ios.deployment_target = '13.0'
s.dependency 'gRPC-Swift', '~> 1.8.0'
s.dependency 'SQLite.swift', '~> 0.13'
s.dependency 'SQLite.swift', '~> 0.13.0'
s.dependency 'libzcashlc', '0.1.0-beta.1'
s.static_framework = true

View File

@ -1,5 +1,8 @@
# Unified Spending Keys
# 0.17.0-alpha.2
- [#579] Fix database lock
- [#592] Fix various tests and deleted some that are not useful anymore
- [#581] getTransparentBalanceForAccount error not handled
# 0.17.0-alpha.1
## Changes to Demo APP
The demo application now uses the SDKSynchronizer to create addresses and
shield funds.