From 2f931d45825d4328ac42a9cdb32fbf8a234c474a Mon Sep 17 00:00:00 2001 From: Moritz Kammerer Date: Mon, 22 Mar 2021 08:58:49 +0100 Subject: [PATCH] [#80] Fixed invalid automatic module name in argon2-nolibs It's now `de.mkammerer.argon2.nolibs` --- CHANGELOG.md | 6 +++++- argon2-jvm-nolibs/build.gradle | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 86ed97c..95e930d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,11 @@ All notable changes to this project will be documented in this file. This projec ### Added -* Added support for Apple's M1 ([PR](https://github.com/phxql/argon2-jvm/pull/82), [VirusTotal scan of the binary](https://www.virustotal.com/gui/file-analysis/ZDQ3ZTQ1ZTIxNTYzY2YyZmU5ZGJjYzQyNGY5ZWY4MzY6MTYxNDA2NzU3MA==/detection)) +- Added support for Apple's M1 ([PR](https://github.com/phxql/argon2-jvm/pull/82), [VirusTotal scan of the binary](https://www.virustotal.com/gui/file-analysis/ZDQ3ZTQ1ZTIxNTYzY2YyZmU5ZGJjYzQyNGY5ZWY4MzY6MTYxNDA2NzU3MA==/detection)) + +### Fixed + +- Fixed invalid automatic module name in argon2-nolibs. It's now `de.mkammerer.argon2.nolibs`. ## [2.9.1] - 2021-01-30 diff --git a/argon2-jvm-nolibs/build.gradle b/argon2-jvm-nolibs/build.gradle index e6d7c08..7ef0995 100644 --- a/argon2-jvm-nolibs/build.gradle +++ b/argon2-jvm-nolibs/build.gradle @@ -5,7 +5,7 @@ plugins { jar { manifest { attributes( - 'Automatic-Module-Name': 'de.mkammerer.argon2-nolibs' + 'Automatic-Module-Name': 'de.mkammerer.argon2.nolibs' ) } }