Update version and change log.

This commit is contained in:
Kevin Gorham 2020-12-18 02:27:37 -05:00
parent 1b5ee935a0
commit d93ddbdc0d
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.1-beta03 *(2020-12-18)*
------------------------------------
- New: Implements ZIP-313, reducing the default fee from 10,000 to 1,000 zats.
- Fix: 80% reduction in build warnings from 90 -> 18 and improved docs [Credit: @herou].
Version 1.2.1-beta02 *(2020-11-24)*
------------------------------------
- New: Improve birthday configuration and config functions.

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.1-beta02"
const val versionCode = 1_02_01_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 versionName = "1.2.1-beta03"
const val versionCode = 1_02_01_203 // 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"