From 5f713454d3d3428bf2b0c98130992830ca30ae18 Mon Sep 17 00:00:00 2001 From: Kevin Gorham Date: Sun, 20 Dec 2020 11:09:36 -0500 Subject: [PATCH] Update version and changelog. --- CHANGELOG.md | 5 +++++ buildSrc/src/main/java/cash/z/ecc/android/Dependencies.kt | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 83d3a4e..d5f2ac1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ Change Log ========== +Version 1.0.0-alpha43 *(2020-12-20)* +------------------------------------ +- Fix: Repaired the upgrade flow, which could not reorg because of missing birthday height +- Fix: Repaired create wallet flow which was being covered by the loading screen + Version 1.0.0-alpha42 *(2020-12-19)* ------------------------------------ - Fix: Correct race condition when launching the app diff --git a/buildSrc/src/main/java/cash/z/ecc/android/Dependencies.kt b/buildSrc/src/main/java/cash/z/ecc/android/Dependencies.kt index b5637a8..a86bd70 100644 --- a/buildSrc/src/main/java/cash/z/ecc/android/Dependencies.kt +++ b/buildSrc/src/main/java/cash/z/ecc/android/Dependencies.kt @@ -9,8 +9,8 @@ object Deps { const val buildToolsVersion = "29.0.2" const val minSdkVersion = 21 const val targetSdkVersion = 29 - const val versionName = "1.0.0-alpha42" - const val versionCode = 1_00_00_142 // 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.0.0-alpha43" + const val versionCode = 1_00_00_143 // 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 packageName = "cash.z.ecc.android"