[ #1549] Release Zashi version 1.1.5 (706)
* [ #1549] Release Zashi version 1.1.5 (706)
* Improve whatsnew formatting
* Update CHANGELOG.md
Updated the changelog info for the stores
* Update WHATS_NEW_EN.md
updated What's New for release
* Revert "Update CHANGELOG.md"
This reverts commit a301441e01
.
* WhatsNew update
---------
Co-authored-by: Andrea Kobrlova <109794238+true-jared@users.noreply.github.com>
This commit is contained in:
parent
c9875c0732
commit
b2f750fb38
|
@ -6,6 +6,8 @@ and this application adheres to [Semantic Versioning](https://semver.org/spec/v2
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.1.5 (706)] - 2024-08-09
|
||||
|
||||
### Changed
|
||||
- Adopted the latest Zcash SDK version 2.1.3, which brings a significant block synchronization speed-up and improved
|
||||
UTXOs fetching logic
|
||||
|
|
|
@ -134,6 +134,9 @@ object ChangelogParser {
|
|||
}
|
||||
}
|
||||
return subList(startIndex, endIndex)
|
||||
.onEach { log("Parser: before formatting item: $it") }
|
||||
// To remove hard line wrap from AS
|
||||
.map { it.replace("\n ", "") }
|
||||
.joinToString(prefix = "\n", separator = "\n")
|
||||
.takeIf { it.isNotBlank() }?.let {
|
||||
ChangelogEntrySection(title = title, content = it)
|
||||
|
|
|
@ -9,9 +9,11 @@ directly impact users rather than highlighting other key architectural updates.*
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.1.5 (706)] - 2024-08-09
|
||||
|
||||
### Changed
|
||||
- Adopted the latest Zcash SDK version 2.1.3, which brings a significant block synchronization speed-up and improved
|
||||
UTXOs fetching logic
|
||||
- We adopted the latest Zcash SDK version 2.1.3, which significantly improves block synchronization speed.
|
||||
- We also improved the logic for fetching transparent transactions.
|
||||
|
||||
## [1.1.4 (700)] - 2024-07-23
|
||||
|
||||
|
|
|
@ -61,7 +61,7 @@ NDK_DEBUG_SYMBOL_LEVEL=symbol_table
|
|||
# VERSION_CODE is effectively ignored. VERSION_NAME is suffixed with the version code.
|
||||
# If not using automated Google Play deployment, then these serve as the actual version numbers.
|
||||
ZCASH_VERSION_CODE=1
|
||||
ZCASH_VERSION_NAME=1.1.4
|
||||
ZCASH_VERSION_NAME=1.1.5
|
||||
|
||||
# Set these fields, as you need them (e.g. with values "Zcash X" and "co.electriccoin.zcash.x")
|
||||
# to distinguish a different release build that can be installed alongside the official version
|
||||
|
|
Loading…
Reference in New Issue