Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .pubignore
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion native/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Loading