diff --git a/CHANGELOG.md b/CHANGELOG.md index 026d7e7..d2018d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [1.6.0](https://github.com/nulab/zxcvbn4j/compare/1.5.2...1.6.0) (2022-04-05) + +* Change the position of the defining signing (#121) [#123](https://github.com/nulab/zxcvbn4j/pull/123) ([vvatanabe](https://github.com/vvatanabe)) +* use configurations.archives in signing (#121) [#122](https://github.com/nulab/zxcvbn4j/pull/122) ([vvatanabe](https://github.com/vvatanabe)) +* Make Scoring.factorial(int) return long [#116](https://github.com/nulab/zxcvbn4j/pull/116) ([InkerBot](https://github.com/InkerBot)) +* Added Italian translation [#113](https://github.com/nulab/zxcvbn4j/pull/113) ([gdonisi](https://github.com/gdonisi)) +* Correct strength.score definition [#117](https://github.com/nulab/zxcvbn4j/pull/117) ([AChep](https://github.com/AChep)) +* Fixes #110 - correct encoding for French and German. [#111](https://github.com/nulab/zxcvbn4j/pull/111) ([40rn05lyv](https://github.com/40rn05lyv)) +* Add module-info.java [#104](https://github.com/nulab/zxcvbn4j/pull/104) ([overheadhunter](https://github.com/overheadhunter)) +* temporarily remove test with JDK 17 (#119) [#120](https://github.com/nulab/zxcvbn4j/pull/120) ([vvatanabe](https://github.com/vvatanabe)) +* Migrated to GitHub Actions [#112](https://github.com/nulab/zxcvbn4j/pull/112) ([overheadhunter](https://github.com/overheadhunter)) +* Update README.md [#108](https://github.com/nulab/zxcvbn4j/pull/108) ([eltociear](https://github.com/eltociear)) + ## [1.5.2](https://github.com/nulab/zxcvbn4j/compare/1.5.1...1.5.2) (2021-06-07) * fix recent years #100 [#102](https://github.com/nulab/zxcvbn4j/pull/102) ([kxn4t](https://github.com/kxn4t)) diff --git a/README.ja.md b/README.ja.md index d70903e..10f6ec0 100644 --- a/README.ja.md +++ b/README.ja.md @@ -11,6 +11,7 @@ zxcvbn4j は、JavaScriptのパスワード強度ジェネレータである[zxc 以下のバージョンは[zxcvbn 4.4.2](https://github.com/dropbox/zxcvbn/releases/tag/v4.4.2)をポーティング +* 2022/04/05 1.6.0 リリース. * 2021/06/08 1.5.2 リリース. * 2021/06/05 1.5.1 リリース. * 2021/04/26 1.5.0 リリース. @@ -67,7 +68,7 @@ zxcvbn4j は、JavaScriptのパスワード強度ジェネレータである[zxc ### gradle を利用する場合 ``` -compile 'com.nulab-inc:zxcvbn:1.5.2' +compile 'com.nulab-inc:zxcvbn:1.6.0' ``` ### maven を利用する場合 @@ -76,7 +77,7 @@ compile 'com.nulab-inc:zxcvbn:1.5.2' com.nulab-inc zxcvbn - 1.5.2 + 1.6.0 ``` diff --git a/README.md b/README.md index 92e85e4..e44bbed 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,7 @@ Through pattern matching and conservative estimation, it recognizes and weighs 3 The following version is a port of [zxcvbn 4.4.2](https://github.com/dropbox/zxcvbn/releases/tag/v4.4.2) +* 2022/04/05 1.6.0 released. * 2021/06/08 1.5.2 released. * 2021/06/05 1.5.1 released. * 2021/04/26 1.5.0 released. @@ -68,7 +69,7 @@ The following version is a port of [zxcvbn 4.2.0](https://github.com/dropbox/zxc ### gradle ``` -compile 'com.nulab-inc:zxcvbn:1.5.2' +compile 'com.nulab-inc:zxcvbn:1.6.0' ``` ### maven @@ -77,7 +78,7 @@ compile 'com.nulab-inc:zxcvbn:1.5.2' com.nulab-inc zxcvbn - 1.5.2 + 1.6.0 ``` diff --git a/build.gradle b/build.gradle index b120e2c..8905c2d 100644 --- a/build.gradle +++ b/build.gradle @@ -7,7 +7,7 @@ plugins { } group = 'com.nulab-inc' -version = '1.5.2' +version = '1.6.0' archivesBaseName = 'zxcvbn' sourceCompatibility = 1.7 targetCompatibility = 1.7