Skip to content

Commit

Permalink
1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vvatanabe committed Apr 5, 2022
1 parent 882da32 commit 225fcc0
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 5 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
Expand Down
5 changes: 3 additions & 2 deletions README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 リリース.
Expand Down Expand Up @@ -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 を利用する場合
Expand All @@ -76,7 +77,7 @@ compile 'com.nulab-inc:zxcvbn:1.5.2'
<dependency>
<groupId>com.nulab-inc</groupId>
<artifactId>zxcvbn</artifactId>
<version>1.5.2</version>
<version>1.6.0</version>
</dependency>
```

Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand All @@ -77,7 +78,7 @@ compile 'com.nulab-inc:zxcvbn:1.5.2'
<dependency>
<groupId>com.nulab-inc</groupId>
<artifactId>zxcvbn</artifactId>
<version>1.5.2</version>
<version>1.6.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 225fcc0

Please sign in to comment.