Updated version.

This commit is contained in:
Kevin Gorham 2020-11-19 09:30:46 -05:00
parent fbd43b20ec
commit a285c69449
No known key found for this signature in database
GPG Key ID: CCA55602DF49FC38
2 changed files with 7 additions and 2 deletions

View File

@ -1,6 +1,11 @@
Change Log
==========
Version 1.2.0-beta02 *(2020-11-19)*
------------------------------------
- New: Added latest checkpoints for testnet and mainnet.
- New: Added display name for Canopy.
Version 1.2.0-beta01 *(2020-10-30)*
------------------------------------
- New: Added ability to erase initializer data.

View File

@ -6,8 +6,8 @@ object Deps {
const val kotlinVersion = "1.4.10"
const val group = "cash.z.ecc.android"
const val artifactName = "zcash-android-sdk"
const val versionName = "1.2.0-beta01"
const val versionCode = 1_02_00_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 versionName = "1.2.0-beta02"
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 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"