Skip to content

Commit 633de34

Browse files
committed
release prep -- bump version and format
1 parent 0fa700b commit 633de34

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

dargon2/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 3.2.1
2+
- Fix `dart run` not working correctly with dargon2 on future versions of dart without a file path- Fix a crash on Ubuntu 20.04 LTS
3+
14
## 3.2.0
25
- Support for running dargon2 operations on M1 Macs
36

dargon2/lib/src/native/dart_lib_loader.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ class DartLibLoader implements LibLoader {
3232
final rootLibrary = 'package:dargon2/dargon2.dart';
3333
// ignore: deprecated_member_use
3434
var rootPath = waitFor(Isolate.resolvePackageUri(Uri.parse(rootLibrary)))!
35-
.resolve('src/blobs/')
36-
.toFilePath(windows: Platform.isWindows);
35+
.resolve('src/blobs/')
36+
.toFilePath(windows: Platform.isWindows);
3737
if (Platform.isMacOS) return '${rootPath}libargon2-darwin.dylib';
3838
if (Platform.isLinux) return '${rootPath}libargon2-linux.so';
3939
if (Platform.isWindows) return '${rootPath}libargon2-win.dll';

dargon2/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dargon2
22
description: Provides bindings for hashing and verifying with Argon2, the winner of the Password Hashing Competition.
3-
version: 3.2.0
3+
version: 3.2.1
44
homepage: https://github.com/tmthecoder/dargon2/blob/main/dargon2
55
repository: https://github.com/tmthecoder/dargon2
66

0 commit comments

Comments
 (0)