Skip to content

Commit a6a6b22

Browse files
committed
Update changelog and version
1 parent 4595e5f commit a6a6b22

2 files changed

Lines changed: 14 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# 2.3.0
2+
3+
- generator_vm.dart
4+
- Avoid mixing predictable datetime output with CSPRNG output.
5+
- generator_js.dart
6+
- Avoid mixing predictable datetime output with CSPRNG output.
7+
- Added `NodeRandom` as an implementation of `Random` for NodeJS.
8+
- `nextInt(max)` draws 32-bit values from Node crypto, supports max ∈ [1, 2^32].
9+
- `secureRandom()` uses `Random.secure()` for web browsers, and `NodeRandom` for Node.js.
10+
- `$generateSeed()` delegates to `secureRandom()`.
11+
- generators.dart
12+
- Fixed spelling of `_hashGenerator`
13+
114
# 2.2.0
215

316
- Fixes typo: Alder is renamed to Adler

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: hashlib
22
description: Secure hash functions, checksum generators, and key derivation algorithms optimized for Dart.
33
homepage: https://github.com/bitanon/hashlib
4-
version: 2.2.0
4+
version: 2.3.0
55

66
environment:
77
sdk: '>=2.19.0 <4.0.0'

0 commit comments

Comments
 (0)