diff --git a/.github/workflows/precompile_binaries.yml b/.github/workflows/precompile_binaries.yml index 572a15a5..43e94252 100644 --- a/.github/workflows/precompile_binaries.yml +++ b/.github/workflows/precompile_binaries.yml @@ -1,6 +1,6 @@ on: push: - branches: [v0.31.2-dev, master, main] + branches: [v0.31.2-dev.1, master, main] name: Precompile Binaries diff --git a/CHANGELOG.md b/CHANGELOG.md index 67db0054..cdf48f42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [0.31.2-dev.1] +#### Fixed +- Invalid `Bip49Public`, `Bip84Public` & `Bip86Public`. + ## [0.31.2-dev] Updated Rust and Flutter dependencies. #### APIs added diff --git a/README.md b/README.md index 6aa8574d..6af42544 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ To use the `bdk_flutter` package in your project, add it as a dependency in your ```dart dependencies: - bdk_flutter: ^0.31.2-dev + bdk_flutter: ^0.31.2-dev.1 ``` ### Examples diff --git a/example/pubspec.lock b/example/pubspec.lock index f11ebe3f..033579d6 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -39,7 +39,7 @@ packages: path: ".." relative: true source: path - version: "0.31.2-dev" + version: "0.31.2-dev.1" boolean_selector: dependency: transitive description: diff --git a/ios/bdk_flutter.podspec b/ios/bdk_flutter.podspec index 06378f72..ac873d49 100644 --- a/ios/bdk_flutter.podspec +++ b/ios/bdk_flutter.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'bdk_flutter' - s.version = "0.31.2-dev" + s.version = "0.31.2-dev.1" s.summary = 'A Flutter library for the Bitcoin Development Kit (https://bitcoindevkit.org/)' s.description = <<-DESC A new Flutter plugin project. diff --git a/lib/src/root.dart b/lib/src/root.dart index f835d94a..93e55c0a 100644 --- a/lib/src/root.dart +++ b/lib/src/root.dart @@ -265,7 +265,7 @@ class Descriptor extends BdkDescriptor { required KeychainKind keychain}) async { try { await Api.initialize(); - final res = await BdkDescriptor.newBip44Public( + final res = await BdkDescriptor.newBip49Public( network: network, keychainKind: keychain, publicKey: publicKey, @@ -307,7 +307,7 @@ class Descriptor extends BdkDescriptor { required KeychainKind keychain}) async { try { await Api.initialize(); - final res = await BdkDescriptor.newBip44Public( + final res = await BdkDescriptor.newBip84Public( network: network, keychainKind: keychain, publicKey: publicKey, @@ -349,7 +349,7 @@ class Descriptor extends BdkDescriptor { required KeychainKind keychain}) async { try { await Api.initialize(); - final res = await BdkDescriptor.newBip44Public( + final res = await BdkDescriptor.newBip86Public( network: network, keychainKind: keychain, publicKey: publicKey, diff --git a/macos/bdk_flutter.podspec b/macos/bdk_flutter.podspec index 1fecb16e..ccc57421 100644 --- a/macos/bdk_flutter.podspec +++ b/macos/bdk_flutter.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'bdk_flutter' - s.version = "0.31.2-dev" + s.version = "0.31.2-dev.1" s.summary = 'A Flutter library for the Bitcoin Development Kit (https://bitcoindevkit.org/)' s.description = <<-DESC A new Flutter plugin project. diff --git a/pubspec.yaml b/pubspec.yaml index 0e4a22c0..013f6be3 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: bdk_flutter description: A Flutter library for the Bitcoin Development Kit(bdk) (https://bitcoindevkit.org/) -version: 0.31.2-dev +version: 0.31.2-dev.1 homepage: https://github.com/LtbLightning/bdk-flutter environment: