Skip to content

Commit

Permalink
chore: 🔖 7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
redDwarf03 committed Jan 6, 2025
1 parent 9146362 commit f6fcebe
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# 7.0.0-beta
# 7.0.0

- BREAKING CHANGES: Add param to `newKeychainTransaction` method to allow many services instead of only one
- BREAKING CHANGES: Add `ArchethicKeychainNotExistsException` to catch error when no keychain exists (impact on `getKeychain` method)
- Force transaction version 3
- Get `TimeoutException` on graphql Request

# 6.0.0-beta

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: archethic_lib_dart
description: Archethic dart library for Flutter for Node and Browser. This library aims to provide a easy way to create Archethic transaction and to send them over the network
homepage: https://github.com/archethic-foundation/libdart

version: 7.0.0-beta
version: 7.0.0

environment:
sdk: ">=3.5.3 <4.0.0"
Expand Down
4 changes: 2 additions & 2 deletions test/keychain_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ void main() {
Keychain(seed: seed).copyWithService('uco', "m/650'/0/0");

final expectedBinary = concatUint8List(<Uint8List>[
Uint8List.fromList(<int>[0, 0, 0, 1]), // Version
Uint8List.fromList(<int>[0, 0, 0, 3]), // Version
Uint8List.fromList(<int>[6]), // Seed size
Uint8List.fromList(utf8.encode('myseed')),
Uint8List.fromList(<int>[1]), // Nb of services
Expand All @@ -125,7 +125,7 @@ void main() {

test('should decode keychain from a binary', () {
final binary = concatUint8List(<Uint8List>[
Uint8List.fromList(<int>[0, 0, 0, 1]), // Version
Uint8List.fromList(<int>[0, 0, 0, 3]), // Version
Uint8List.fromList(<int>[6]), // Seed size
Uint8List.fromList(utf8.encode('myseed')),
Uint8List.fromList(<int>[1]), // Nb of services
Expand Down

0 comments on commit f6fcebe

Please sign in to comment.