parent
13070f8f38
commit
25c77a2d73
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -6,6 +6,17 @@ and this application adheres to [Semantic Versioning](https://semver.org/spec/v2
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [1.5.2 (926)] - 2025-04-03
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Adopted Zcash SDK v2.2.11
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Database migration bugs in SDK's `zcash_client_sqlite 0.16.0` and `0.16.1` have
|
||||||
|
been fixed by updating to `zcash_client_sqlite 0.16.2`. These caused a few
|
||||||
|
wallets to stop working after the Zcash SDK v2.2.9 upgrade due to failed database
|
||||||
|
migrations.
|
||||||
|
|
||||||
## [1.5.1 (925)] - 2025-03-31
|
## [1.5.1 (925)] - 2025-03-31
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
|
@ -12,6 +12,12 @@ directly impact users rather than highlighting other key architectural updates.*
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [1.5.2 (926)] - 2025-04-03
|
||||||
|
|
||||||
|
### Fixed:
|
||||||
|
- 1.5 Bug Fix release!
|
||||||
|
- We fixed a migration issue impacting some users on 1.5 app version.
|
||||||
|
|
||||||
## [1.5.1 (925)] - 2025-03-31
|
## [1.5.1 (925)] - 2025-03-31
|
||||||
|
|
||||||
### Added:
|
### Added:
|
||||||
|
|
|
@ -12,6 +12,12 @@ directly impact users rather than highlighting other key architectural updates.*
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [1.5.2 (926)] - 2025-04-03
|
||||||
|
|
||||||
|
### Corregido:
|
||||||
|
- ¡Corrección de errores 1.5!
|
||||||
|
- Solucionamos un problema de migración que afectaba a algunos usuarios de la versión 1.5 de la app.
|
||||||
|
|
||||||
## [1.5.1 (925)] - 2025-03-31
|
## [1.5.1 (925)] - 2025-03-31
|
||||||
|
|
||||||
### Añadido:
|
### Añadido:
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
Fixed:
|
||||||
|
- 1.5 Bug Fix release!
|
||||||
|
- We fixed a migration issue impacting some users on 1.5 app version.
|
|
@ -0,0 +1,3 @@
|
||||||
|
Corregido:
|
||||||
|
- ¡Corrección de errores 1.5!
|
||||||
|
- Solucionamos un problema de migración que afectaba a algunos usuarios de la versión 1.5 de la app.
|
|
@ -61,7 +61,7 @@ NDK_DEBUG_SYMBOL_LEVEL=symbol_table
|
||||||
# VERSION_CODE is effectively ignored. VERSION_NAME is suffixed with the version code.
|
# 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.
|
# If not using automated Google Play deployment, then these serve as the actual version numbers.
|
||||||
ZCASH_VERSION_CODE=1
|
ZCASH_VERSION_CODE=1
|
||||||
ZCASH_VERSION_NAME=1.5.1
|
ZCASH_VERSION_NAME=1.5.2
|
||||||
|
|
||||||
# Set these fields, as you need them (e.g. with values "Zcash X" and "co.electriccoin.zcash.x")
|
# 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
|
# to distinguish a different release build that can be installed alongside the official version
|
||||||
|
@ -211,7 +211,7 @@ ZIP_321_VERSION = 0.0.6
|
||||||
# WARNING: Ensure a non-snapshot version is used before releasing to production
|
# WARNING: Ensure a non-snapshot version is used before releasing to production
|
||||||
ZCASH_BIP39_VERSION=1.0.9
|
ZCASH_BIP39_VERSION=1.0.9
|
||||||
# WARNING: Ensure a non-snapshot version is used before releasing to production
|
# WARNING: Ensure a non-snapshot version is used before releasing to production
|
||||||
ZCASH_SDK_VERSION=2.2.10-SNAPSHOT
|
ZCASH_SDK_VERSION=2.2.11-SNAPSHOT
|
||||||
|
|
||||||
# Toolchain is the Java version used to build the application, which is separate from the
|
# Toolchain is the Java version used to build the application, which is separate from the
|
||||||
# Java version used to run the application.
|
# Java version used to run the application.
|
||||||
|
|
Loading…
Reference in New Issue