Skip to content

Commit

Permalink
V5.2.0
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
mrtnetwork committed Feb 6, 2025
1 parent f205495 commit 5a5db6f
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 5.2.0

* Update dependencies

## 5.1.0

* Update dependencies
Expand Down
6 changes: 3 additions & 3 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ packages:
path: ".."
relative: true
source: path
version: "5.0.0"
version: "5.2.0"
blockchain_utils:
dependency: "direct main"
description:
name: blockchain_utils
sha256: "7d0a1a3df35e75433486c5967073be4dda19efb9232a5233e1558fa522405df7"
sha256: b6cb335397685e7625bb74bbd4ff4f0dd0f6ce3e3f65a40da4aa5a3c54eaa78c
url: "https://pub.dev"
source: hosted
version: "4.0.1"
version: "4.1.0"
boolean_selector:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ dependencies:
path: ../
# blockchain_utils:
# path: ../../../blockchain_utils
blockchain_utils: ^4.0.1
blockchain_utils: ^4.1.0
http: ^1.2.0

dev_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion lib/src/bitcoin/address/core.dart
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ abstract class BitcoinAddressType implements Enumerate {
T cast<T extends BitcoinAddressType>() {
if (this is! T) {
throw DartBitcoinPluginException('BitcoinAddressType casting failed.',
details: {'excepted': '$T', 'type': value});
details: {'expected': '$T', 'type': value});
}
return this as T;
}
Expand Down
2 changes: 1 addition & 1 deletion lib/src/provider/models/fee_rate/fee_rate.dart
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,6 @@ BigInt _parseMempoolFees(dynamic data) {
return BigInt.from((data * kb));
} else {
throw DartBitcoinPluginException(
'cannot parse mempool fees excepted double, string got ${data.runtimeType}');
'cannot parse mempool fees expected double, string got ${data.runtimeType}');
}
}
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: bitcoin_base
description: A versatile library for Bitcoin, Dogecoin, Litecoin, Dash, BSV, and BCH. Supports P2PKH, P2SH, P2WPKH, P2WSH, P2TR, with advanced creation, signing, and spending capabilities.
version: 5.1.0
version: 5.2.0
homepage: "https://github.com/mrtnetwork/bitcoin_base"
repository: "https://github.com/mrtnetwork/bitcoin_base"
Author: [email protected]
Expand All @@ -16,7 +16,7 @@ environment:


dependencies:
blockchain_utils: ^4.0.1
blockchain_utils: ^4.1.0

# blockchain_utils:
# path: ../../blockchain_utils
Expand Down

0 comments on commit 5a5db6f

Please sign in to comment.