Skip to content

Commit f3fe79f

Browse files
committed
Bumpt version to 0.10.0 and add CHANGELOG
1 parent 61c3ff8 commit f3fe79f

5 files changed

Lines changed: 13 additions & 6 deletions

File tree

CHANGELOG

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Releases
22

3+
## v0.10.0
4+
5+
* [BREAKING CHANGE] the null terminator will not be counted to the 72 byte max length anymore. This changes the behaviour IF you used passwords with EXACTLY 72 bytes. #43, #44 (thx @quinot)
6+
* migrate to Maven Central, Github Actions and Codecov #46
7+
* update many dependencies and remove warnings for CVE-2020-15522 (bc) CVE-2020-15250 (junit) -> were never part of production code #41
8+
9+
310
## v0.9.0
411
* fix license headers and correct credits to jBcrypt
512
* add long-password strategy to verifier #21

modules/bcrypt-cli/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>bcrypt-parent</artifactId>
99
<groupId>at.favre.lib</groupId>
10-
<version>0.10.0-RC</version>
10+
<version>0.10.0</version>
1111
<relativePath>../../</relativePath>
1212
</parent>
1313

@@ -57,7 +57,7 @@
5757
<dependency>
5858
<groupId>at.favre.lib</groupId>
5959
<artifactId>bcrypt</artifactId>
60-
<version>0.10.0-RC</version>
60+
<version>0.10.0</version>
6161
<classifier>optimized</classifier>
6262
</dependency>
6363
<dependency>

modules/bcrypt/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>bcrypt-parent</artifactId>
99
<groupId>at.favre.lib</groupId>
10-
<version>0.10.0-RC</version>
10+
<version>0.10.0</version>
1111
<relativePath>../../</relativePath>
1212
</parent>
1313

modules/benchmark-jmh/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>bcrypt-parent</artifactId>
99
<groupId>at.favre.lib</groupId>
10-
<version>0.10.0-RC</version>
10+
<version>0.10.0</version>
1111
<relativePath>../../</relativePath>
1212
</parent>
1313

@@ -74,7 +74,7 @@
7474
<dependency>
7575
<groupId>at.favre.lib</groupId>
7676
<artifactId>bcrypt</artifactId>
77-
<version>0.10.0-RC</version>
77+
<version>0.10.0</version>
7878
<classifier>optimized</classifier>
7979
</dependency>
8080
<dependency>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<artifactId>bcrypt-parent</artifactId>
1414
<packaging>pom</packaging>
15-
<version>0.10.0-RC</version>
15+
<version>0.10.0</version>
1616

1717
<url>https://github.com/patrickfav/bcrypt</url>
1818
<inceptionYear>2018</inceptionYear>

0 commit comments

Comments
 (0)