Bump version to 1.3.1
All checks were successful
/ test (pull_request) Successful in 25s

This commit is contained in:
2026-03-12 11:33:28 +01:00
parent a28cb7d2f9
commit 06d86a6679
2 changed files with 3 additions and 3 deletions

View File

@@ -20,7 +20,7 @@ repositories {
}
dependencies {
implementation("com.infendro:prng:1.3.0")
implementation("com.infendro:prng:1.3.1")
}
```
@@ -29,7 +29,7 @@ dependencies {
```kotlin
fun main() {
// create PRNG instance
val rng = CSPRNG.HMAC(`SHA-256`)
val rng = CSPRNG.HMAC(`SHA-256`())
// seed PRNG to receive deterministic numbers
rng.seed(/* seed */)