Skip to content

Commit cc3092e

Browse files
Support up-to-date dependencies
1 parent 9438a4d commit cc3092e

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
## 0.0.5
22

3+
- Make getters less strict
4+
- Support up-to-date dependencies
5+
6+
## 0.0.5
7+
38
- Fix issues with normalization of French and Spanish
49

510
## 0.0.4

lib/src/mnemonics/legacy/legacy_seed_lang.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ class LegacySeedLang {
128128
trimmedWords += words[i].substring(0, actualPrefixLength);
129129
}
130130

131-
var checksum = trimmedWords.crc32code(Encoding.getByName('utf-8'));
131+
var checksum = crc32code(trimmedWords, Encoding.getByName('utf-8'));
132132
var index = (checksum % words.length);
133133
return index;
134134
}

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: polyseed
22
description: A pure dart implementation of the 16-word seed scheme for monero
3-
version: 0.0.5
3+
version: 0.0.6
44
homepage: https://cakelabs.com
55
repository: https://github.com/cake-tech/polyseed_dart
66
issue_tracker: https://github.com/cake-tech/polyseed_dart/issues
@@ -10,7 +10,7 @@ environment:
1010

1111
dependencies:
1212
pointycastle: ^3.7.3
13-
hashlib: ^1.12.0
13+
hashlib: ^1.19.2
1414
unorm_dart: ^0.3.0
1515

1616
dev_dependencies:

0 commit comments

Comments
 (0)