From 7f39d4864d7a5e54f8d756fa0c8db221d60b50dd Mon Sep 17 00:00:00 2001 From: Francisco Gindre Date: Mon, 31 Oct 2022 08:37:11 -0300 Subject: [PATCH] Release 0.17.0-alpha.2 --- Package.swift | 2 +- ZcashLightClientKit.podspec | 4 ++-- changelog.md | 7 +++++-- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Package.swift b/Package.swift index 0783a4ab..403e7c6f 100644 --- a/Package.swift +++ b/Package.swift @@ -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: [ diff --git a/ZcashLightClientKit.podspec b/ZcashLightClientKit.podspec index 1118010c..a9761a27 100644 --- a/ZcashLightClientKit.podspec +++ b/ZcashLightClientKit.podspec @@ -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 diff --git a/changelog.md b/changelog.md index 8f43e0a7..64d30a7b 100644 --- a/changelog.md +++ b/changelog.md @@ -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.