Skip to content

Commit

Permalink
1.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
vvatanabe committed Mar 30, 2018
1 parent 40ff2e1 commit 6c4ac96
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
9 changes: 6 additions & 3 deletions README.ja.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# zxcvbn4j [![Build Status](https://travis-ci.org/nulab/zxcvbn4j.svg?branch=master)](https://travis-ci.org/nulab/zxcvbn4j) [![Coverage Status](https://coveralls.io/repos/nulab/zxcvbn4j/badge.svg?branch=master&service=github)](https://coveralls.io/github/nulab/zxcvbn4j?branch=master) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.nulab-inc/zxcvbn/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.nulab-inc/zxcvbn)
# zxcvbn4j [![Build Status](https://travis-ci.org/nulab/zxcvbn4j.svg?branch=master)](https://travis-ci.org/nulab/zxcvbn4j) [![Coverage Status](https://coveralls.io/repos/nulab/zxcvbn4j/badge.svg?branch=master&service=github)](https://coveralls.io/github/nulab/zxcvbn4j?branch=master) [![Maven Central](https://img.shields.io/maven-central/v/com.nulab-inc/zxcvbn.svg)](https://img.shields.io/maven-central/v/com.nulab-inc/zxcvbn.svg)

zxcvbn4j は、JavaScriptのパスワード強度ジェネレータである[zxcvbn](https://github.com/dropbox/zxcvbn)をJavaにポーティングしたものです。

Expand All @@ -10,10 +10,13 @@ zxcvbn4j は、JavaScriptのパスワード強度ジェネレータである[zxc
## 更新

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

* 2018/03/30 1.2.5 リリース.
* 2018/02/27 1.2.4 リリース.
* 2017/03/27 1.2.3 リリース.

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

* 2016/12/07 1.2.2 リリース.
* 2016/12/03 1.2.1 リリース.

Expand Down Expand Up @@ -47,7 +50,7 @@ zxcvbn4j は、JavaScriptのパスワード強度ジェネレータである[zxc
### gradle を利用する場合

```
compile 'com.nulab-inc:zxcvbn:1.2.4'
compile 'com.nulab-inc:zxcvbn:1.2.5'
```

### maven を利用する場合
Expand All @@ -56,7 +59,7 @@ compile 'com.nulab-inc:zxcvbn:1.2.4'
<dependency>
<groupId>com.nulab-inc</groupId>
<artifactId>zxcvbn</artifactId>
<version>1.2.4</version>
<version>1.2.5</version>
</dependency>
```

Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# zxcvbn4j [![Build Status](https://travis-ci.org/nulab/zxcvbn4j.svg?branch=master)](https://travis-ci.org/nulab/zxcvbn4j) [![Coverage Status](https://coveralls.io/repos/nulab/zxcvbn4j/badge.svg?branch=master&service=github)](https://coveralls.io/github/nulab/zxcvbn4j?branch=master) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.nulab-inc/zxcvbn/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.nulab-inc/zxcvbn)
# zxcvbn4j [![Build Status](https://travis-ci.org/nulab/zxcvbn4j.svg?branch=master)](https://travis-ci.org/nulab/zxcvbn4j) [![Coverage Status](https://coveralls.io/repos/nulab/zxcvbn4j/badge.svg?branch=master&service=github)](https://coveralls.io/github/nulab/zxcvbn4j?branch=master) [![Maven Central](https://img.shields.io/maven-central/v/com.nulab-inc/zxcvbn.svg)](https://img.shields.io/maven-central/v/com.nulab-inc/zxcvbn.svg)

This is a java port of [zxcvbn](https://github.com/dropbox/zxcvbn), which is a password strength estimator inspired by password crackers written on JavaScript.
Through pattern matching and conservative estimation, it recognizes and weighs 30k common passwords, common names and surnames according to US census data, popular English words from Wikipedia and US television and movies, and other common patterns like dates, repeats (`aaa`), sequences (`abcd`), keyboard patterns (`qwertyuiop`), and l33t speak.
Expand All @@ -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)

* 2018/03/30 1.2.5 released.
* 2018/02/27 1.2.4 released.
* 2017/03/27 1.2.3 released.

Expand Down Expand Up @@ -50,7 +51,7 @@ The following version is a port of [zxcvbn 4.2.0](https://github.com/dropbox/zxc
### gradle

```
compile 'com.nulab-inc:zxcvbn:1.2.4'
compile 'com.nulab-inc:zxcvbn:1.2.5'
```

### maven
Expand All @@ -59,7 +60,7 @@ compile 'com.nulab-inc:zxcvbn:1.2.4'
<dependency>
<groupId>com.nulab-inc</groupId>
<artifactId>zxcvbn</artifactId>
<version>1.2.4</version>
<version>1.2.5</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ apply plugin: 'com.github.kt3k.coveralls'
apply from: 'dictionary.gradle'

group = 'com.nulab-inc'
version = '1.2.4'
version = '1.2.5'
archivesBaseName = 'zxcvbn'
sourceCompatibility = 1.7
targetCompatibility = 1.7
Expand Down

0 comments on commit 6c4ac96

Please sign in to comment.