Skip to content

Commit

Permalink
Prepare for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
Tostino committed Jul 20, 2018
1 parent 501ca47 commit 1a92922
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ The project will be built, and the jar file will be placed in the target sub-dir

### Standalone
To use as a stand-alone program, just compile, and run it by calling:
`java -jar nbvcxz-1.4.1.jar`
`java -jar nbvcxz-1.4.2.jar`
![alt text](http://i.imgur.com/9c070FX.png)

### Library
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>me.gosimple</groupId>
<artifactId>nbvcxz</artifactId>
<packaging>jar</packaging>
<version>1.4.1</version>
<version>1.4.2</version>

<name>nbvcxz</name>
<description>Nbvcxz takes heavy inspiration from the zxcvbn library built by Dropbox, and in a lot of ways is
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
public class ConfigurationBuilder
{
private static final double YEAR = 365.2422 * 24 * 60 * 60 * 1000; // Average year length
private static final long START = 1425168000000L; // Date values were chosen: 2015-03-01
private static final long START = 1533096000000L; // Date values were chosen: 2018-08-01

private List<PasswordMatcher> passwordMatchers;
private Map<String, Long> guessTypes;
Expand Down Expand Up @@ -59,7 +59,7 @@ public static List<PasswordMatcher> getDefaultPasswordMatchers()
* Returns the Moore's law multiplier we're using for getDefaultGuessTypes().
*
* We will only return a multiplier greater than 1 if it has been more than year since we've updated the constants.
* The date for this function is: March 2018
* The date for this function is: 2018-08-01
* @return the Moore's Law multiplier
*/
public static BigDecimal getMooresMultiplier()
Expand Down

0 comments on commit 1a92922

Please sign in to comment.