Skip to content

Commit

Permalink
Merge pull request #108 from LtbLightning/exceptions-types
Browse files Browse the repository at this point in the history
Exceptions Types
  • Loading branch information
BitcoinZavior authored Oct 1, 2023
2 parents 39916c8 + b0fbf76 commit d536a1d
Show file tree
Hide file tree
Showing 14 changed files with 396 additions and 6,960 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## [0.29.1]
Strongly typed exceptions

## [0.29.0]
Support Dart 3.
Updated Rust and Flutter dependencies.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.29.0
bdk_flutter: ^0.29.1
```

### Examples
Expand Down
16 changes: 8 additions & 8 deletions ios/bdk_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@
#
Pod::Spec.new do |s|
s.name = 'bdk_flutter'
s.version = '0.29.0'
s.version = '0.29.1'
s.summary = 'A Flutter library for the Bitcoin Development Kit (https://bitcoindevkit.org/)'
s.description = <<-DESC
A new Flutter project.
DESC
s.homepage = 'https://github.com/LtbLightning/bdk-flutter'
s.license = { :file => '../LICENSE' }
s.author = { 'Bitcoin Zavior' => '[email protected]' }
s.source = { :path => '.' }
s.source_files = 'Classes/**/*'
s.dependency 'Flutter'
DESC
s.homepage = 'https://github.com/LtbLightning/bdk-flutter'
s.license = { :file => '../LICENSE' }
s.author = { 'Bitcoin Zavior' => '[email protected]' }
s.source = { :path => '.' }
s.source_files = 'Classes/**/*'
s.dependency 'Flutter'
s.platform = :ios, '12.0'
# Flutter.framework does not contain a i386 slice.
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
Expand Down
1 change: 1 addition & 0 deletions lib/bdk_flutter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ export './src/generated/bridge_definitions.dart'
RbfValue_Value,
DatabaseConfig_Sled;
export './src/root.dart';
export 'src/utils/exceptions.dart';
Loading

0 comments on commit d536a1d

Please sign in to comment.