From 7d45372cea2c7690e9efb38e7d0491f7e557fbd9 Mon Sep 17 00:00:00 2001 From: Matthew Date: Thu, 25 Jun 2026 10:09:56 -0500 Subject: [PATCH] chore(release): prepare 1.0.0-rc.2 --- .pubignore | 2 ++ CHANGELOG.md | 5 +++++ README.md | 2 +- native/Cargo.toml | 2 +- pubspec.yaml | 2 +- 5 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.pubignore b/.pubignore index 8c5389b..512da45 100644 --- a/.pubignore +++ b/.pubignore @@ -8,6 +8,8 @@ docs/ **/build/ **/.dart_tool/ native/target/ +Cargo.lock +native/Cargo.lock # Native libraries are built per consumer by Dart Native Assets. *.dylib diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d9e468..4d6fe36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to `bdk_dart` will be documented in this file. +## 1.0.0-rc.2 + +- Apply Android 16 KB page-size alignment configuration during native asset builds so `libbdk_dart_ffi.so` meets Google Play requirements. +- Add Android alignment validation coverage for native asset and APK build outputs. + ## 1.0.0-rc.1 - Update the generated Dart bindings and native wrapper to `bdk-ffi` `v3.0.0`. diff --git a/README.md b/README.md index 8a115fe..571355f 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ dependencies: ```yaml dependencies: - bdk_dart: ^1.0.0-rc.1 + bdk_dart: ^1.0.0-rc.2 ``` Import the package entrypoint: diff --git a/native/Cargo.toml b/native/Cargo.toml index 2d7cbe1..373d23f 100644 --- a/native/Cargo.toml +++ b/native/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "bdk_dart_ffi" description = "This is a simple wrapper crate which re-exports bdk-ffi for publishing to pub.dev" -version = "1.0.0-rc.1" +version = "1.0.0-rc.2" homepage = "https://bitcoindevkit.org" repository = "https://github.com/bitcoindevkit/bdk-dart" edition = "2021" diff --git a/pubspec.yaml b/pubspec.yaml index ac598f0..21f8113 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: bdk_dart description: Dart bindings for bdk-ffi -version: 1.0.0-rc.1 +version: 1.0.0-rc.2 homepage: https://github.com/bitcoindevkit/bdk-dart repository: https://github.com/bitcoindevkit/bdk-dart issue_tracker: https://github.com/bitcoindevkit/bdk-dart/issues