Skip to content

Commit ff1fbfb

Browse files
committed
prepare release
1 parent ec084e6 commit ff1fbfb

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [1.6.1](https://github.com/Password4j/password4j/releases/tag/1.6.1) - (2022-10-07)
4+
### Changed
5+
* Algorithms' default values are aligned to [OWASP recommendation](https://cheatsheetseries.owasp.org/cheatsheets/Password_Storage_Cheat_Sheet.html) ([#80](../../issues/80))
6+
37
## [1.6.0](https://github.com/Password4j/password4j/releases/tag/1.6.0) - (2022-06-17)
48
### Changed
59
* `BCryptFunction`, `SCryptFunction`, `#withBCrypt()`, `#withSCrypt()`, `getBCryptInstance()`, `getSCryptInstance()` to `BcryptFunction`, `ScryptFunction`, `#withBcrypt()`, `#withScrypt()`, `getBcryptInstance()`, `getScryptInstance()` ([#36](../../issues/36)).

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Add the dependency of the latest version to your `pom.xml`:
5050
<dependency>
5151
<groupId>com.password4j</groupId>
5252
<artifactId>password4j</artifactId>
53-
<version>1.6.0</version>
53+
<version>1.6.1</version>
5454
</dependency>
5555
```
5656

@@ -62,14 +62,14 @@ repositories {
6262
}
6363
6464
dependencies {
65-
implementation 'com.password4j:password4j:1.6.0'
65+
implementation 'com.password4j:password4j:1.6.1'
6666
}
6767
```
6868

6969
## ![Scala SBT](https://i.imgur.com/Nqv3mVd.png?1) Scala SBT
7070
Add to the managed dependencies of your `build.sbt` the latest version:
7171
```shell script
72-
libraryDependencies += "com.password4j" % "password4j" % "1.6.0"
72+
libraryDependencies += "com.password4j" % "password4j" % "1.6.1"
7373
```
7474

7575
# Usage

0 commit comments

Comments
 (0)