diff --git a/README.ja.md b/README.ja.md index c1c5c42..13bc20e 100644 --- a/README.ja.md +++ b/README.ja.md @@ -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にポーティングしたものです。 @@ -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 リリース. @@ -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 を利用する場合 @@ -56,7 +59,7 @@ compile 'com.nulab-inc:zxcvbn:1.2.4' com.nulab-inc zxcvbn - 1.2.4 + 1.2.5 ``` diff --git a/README.md b/README.md index f7a2e0b..bcd6efc 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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. @@ -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 @@ -59,7 +60,7 @@ compile 'com.nulab-inc:zxcvbn:1.2.4' com.nulab-inc zxcvbn - 1.2.4 + 1.2.5 ``` diff --git a/build.gradle b/build.gradle index e45d058..81c68cf 100644 --- a/build.gradle +++ b/build.gradle @@ -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