Update versions and changelog.

This commit is contained in:
Kevin Gorham 2020-11-20 14:14:43 -05:00
parent efc8500959
commit 7641e9706c
No known key found for this signature in database
GPG Key ID: CCA55602DF49FC38
3 changed files with 6 additions and 4 deletions

View File

@ -1,10 +1,12 @@
Change Log Change Log
========== ==========
Version 1.2.0-beta02 *(2020-11-19)* Version 1.2.1-beta01 *(2020-11-19)*
------------------------------------ ------------------------------------
- New: Added latest checkpoints for testnet and mainnet. - New: Added latest checkpoints for testnet and mainnet.
- New: Added display name for Canopy. - New: Added display name for Canopy.
- New: Update to the latest lightwalletd service definition.
- Fix: Convert Initializer.Builder to Initializer.Config to simplify the constructors.
Version 1.2.0-beta01 *(2020-10-30)* Version 1.2.0-beta01 *(2020-10-30)*
------------------------------------ ------------------------------------

View File

@ -263,7 +263,7 @@ dependencies {
// sample mnemonic plugin // sample mnemonic plugin
androidTestImplementation 'com.github.zcash:zcash-android-wallet-plugins:1.0.1' androidTestImplementation 'com.github.zcash:zcash-android-wallet-plugins:1.0.1'
androidTestImplementation 'cash.z.ecc.android:kotlin-bip39:1.0.0-beta09' androidTestImplementation 'cash.z.ecc.android:kotlin-bip39:1.0.1'
} }
taskTree{ taskTree{

View File

@ -6,8 +6,8 @@ object Deps {
const val kotlinVersion = "1.4.10" const val kotlinVersion = "1.4.10"
const val group = "cash.z.ecc.android" const val group = "cash.z.ecc.android"
const val artifactName = "zcash-android-sdk" const val artifactName = "zcash-android-sdk"
const val versionName = "1.2.0-beta02" const val versionName = "1.2.1-beta01"
const val versionCode = 1_02_00_202 // last digits are alpha(0XX) beta(2XX) rc(4XX) release(8XX). Ex: 1_08_04_401 is an release candidate build of version 1.8.4 and 1_08_04_800 would be the final release. const val versionCode = 1_02_01_201 // last digits are alpha(0XX) beta(2XX) rc(4XX) release(8XX). Ex: 1_08_04_401 is an release candidate build of version 1.8.4 and 1_08_04_800 would be the final release.
const val description = "This lightweight SDK connects Android to Zcash. It welds together Rust and Kotlin in a minimal way, allowing third-party Android apps to send and receive shielded transactions easily, securely and privately." const val description = "This lightweight SDK connects Android to Zcash. It welds together Rust and Kotlin in a minimal way, allowing third-party Android apps to send and receive shielded transactions easily, securely and privately."
const val githubUrl = "https://github.com/zcash/zcash-android-wallet-sdk" const val githubUrl = "https://github.com/zcash/zcash-android-wallet-sdk"