diff --git a/CHANGELOG.md b/CHANGELOG.md index 73b38a9c..d584bcf8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,8 +11,9 @@ and this library adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 the Lightwalletd server customization. The new parameter is part of PersistableWallet persistence. The SDK handles the persistence migration internally. - The **1_000** Zatoshi fee proposed in ZIP-313 is deprecated now, so the minimum is **10_000** Zatoshi, defined in - ZIP-317—the ZcashSdk.MINERS_FEE now returns the correct value as described above. Note that the actual fee is + ZIP-317—the `ZcashSdk.MINERS_FEE` now returns the correct value as described above. Note that the actual fee is handled in a rust layer. +- Adopted the latest Bip39 library v1.0.6 ## [2.0.0] - 2023-09-25 diff --git a/gradle.properties b/gradle.properties index 73879c82..a73e56f4 100644 --- a/gradle.properties +++ b/gradle.properties @@ -124,7 +124,7 @@ ANDROIDX_TEST_CORE_VERSION=1.5.0 ANDROIDX_TEST_RUNNER_VERSION=1.5.2 ANDROIDX_TRACING_VERSION=1.3.0-alpha02 ANDROIDX_UI_AUTOMATOR_VERSION=2.3.0-alpha04 -BIP39_VERSION=1.0.5 +BIP39_VERSION=1.0.6 CORE_LIBRARY_DESUGARING_VERSION=2.0.3 COROUTINES_OKHTTP=1.0 GOOGLE_MATERIAL_VERSION=1.9.0 diff --git a/settings.gradle.kts b/settings.gradle.kts index 7792523f..287fefa6 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -56,6 +56,16 @@ dependencyResolutionManagement { google() mavenCentral() + maven("https://oss.sonatype.org/content/repositories/snapshots") { + mavenContent { + snapshotsOnly() + } + if (isRepoRestrictionEnabled) { + content { + includeGroup("cash.z.ecc.android") + } + } + } maven("https://jitpack.io") maven("https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven") maven("https://maven.emulator.wtf/releases/") {