Skip to content

Commit

Permalink
1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vvatanabe committed Aug 18, 2023
1 parent 91deed7 commit 1b25f4e
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 7 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [1.8.1](https://github.com/nulab/zxcvbn4j/compare/1.8.0...1.8.1) (2023-08-18)

* fix: improved SpatialMatcher decision logic (#84) (#129) [#147](https://github.com/nulab/zxcvbn4j/pull/147) ([vvatanabe](https://github.com/vvatanabe))
* refactor: refactoring matchers.ReverseDictionaryMatcher [#146](https://github.com/nulab/zxcvbn4j/pull/146) ([vvatanabe](https://github.com/vvatanabe))
* style: format code in matchers.RepeatMatcher [#145](https://github.com/nulab/zxcvbn4j/pull/145) ([vvatanabe](https://github.com/vvatanabe))
* refactor: refactoring matchers.DateMatcher [#144](https://github.com/nulab/zxcvbn4j/pull/144) ([vvatanabe](https://github.com/vvatanabe))
* refactor: refactoring matchers.RegexMatcher [#143](https://github.com/nulab/zxcvbn4j/pull/143) ([vvatanabe](https://github.com/vvatanabe))
* refactor: refactoring matchers.DictionaryMatcher [#142](https://github.com/nulab/zxcvbn4j/pull/142) ([vvatanabe](https://github.com/vvatanabe))
* refactor: refactoring matchers.L33tMatcher [#141](https://github.com/nulab/zxcvbn4j/pull/141) ([vvatanabe](https://github.com/vvatanabe))
* refactor: refactoring matchers.SequenceMatcher [#140](https://github.com/nulab/zxcvbn4j/pull/140) ([vvatanabe](https://github.com/vvatanabe))
* fix: fix the warnings from SpotBugs [#139](https://github.com/nulab/zxcvbn4j/pull/139) ([vvatanabe](https://github.com/vvatanabe))
* refactor: refactoring matchers.SpatialMatcher [#138](https://github.com/nulab/zxcvbn4j/pull/138) ([vvatanabe](https://github.com/vvatanabe))
* refactor: refactoring matchers.RepeatMatcher [#137](https://github.com/nulab/zxcvbn4j/pull/137) ([vvatanabe](https://github.com/vvatanabe))

## [1.8.0](https://github.com/nulab/zxcvbn4j/compare/1.7.0...1.8.0) (2023-04-29)

* Added feedback messages translated into Spanish [#135](https://github.com/nulab/zxcvbn4j/pull/135) ([manchilop](https://github.com/manchilop))
Expand Down
7 changes: 4 additions & 3 deletions README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ zxcvbn4j は、JavaScriptのパスワード強度ジェネレータである[zxc

以下のバージョンは[zxcvbn 4.4.2](https://github.com/dropbox/zxcvbn/releases/tag/v4.4.2)をポーティング

* 2023/08/18 1.8.1 リリース.
* 2023/07/04 1.8.0 リリース.
* 2022/04/13 1.7.0 リリース.
* 2022/04/05 1.6.0 リリース.
Expand Down Expand Up @@ -117,12 +118,12 @@ zxcvbn4j は、JavaScriptのパスワード強度ジェネレータである[zxc

## インストール

https://mvnrepository.com/artifact/com.nulab-inc/zxcvbn/1.8.0
https://mvnrepository.com/artifact/com.nulab-inc/zxcvbn/1.8.1

Gradle:

```
compile 'com.nulab-inc:zxcvbn:1.8.0'
compile 'com.nulab-inc:zxcvbn:1.8.1'
```

Maven:
Expand All @@ -131,7 +132,7 @@ Maven:
<dependency>
<groupId>com.nulab-inc</groupId>
<artifactId>zxcvbn</artifactId>
<version>1.8.0</version>
<version>1.8.1</version>
</dependency>
```

Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,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)

* 2023/08/18 1.8.1 released.
* 2023/07/04 1.8.0 released.
* 2022/04/13 1.7.0 released.
* 2022/04/05 1.6.0 released.
Expand Down Expand Up @@ -117,12 +118,12 @@ The following version is a port of [zxcvbn 4.2.0](https://github.com/dropbox/zxc

## Install

https://mvnrepository.com/artifact/com.nulab-inc/zxcvbn/1.8.0
https://mvnrepository.com/artifact/com.nulab-inc/zxcvbn/1.8.1

Gradle:

```
compile 'com.nulab-inc:zxcvbn:1.8.0'
compile 'com.nulab-inc:zxcvbn:1.8.1'
```

Maven:
Expand All @@ -131,7 +132,7 @@ Maven:
<dependency>
<groupId>com.nulab-inc</groupId>
<artifactId>zxcvbn</artifactId>
<version>1.8.0</version>
<version>1.8.1</version>
</dependency>
```

Expand Down
6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

group = 'com.nulab-inc'
version = '1.8.0'
version = '1.8.1'
archivesBaseName = 'zxcvbn'
sourceCompatibility = 1.7
targetCompatibility = 1.7
Expand Down Expand Up @@ -38,6 +38,10 @@ spotbugs {
reportLevel = 'high'
}

spotbugsTest {
enabled = false
}

spotbugsMain {
reports {
xml.enabled = false
Expand Down

0 comments on commit 1b25f4e

Please sign in to comment.