Bump version to 1.5.0
All checks were successful
/ test (pull_request) Successful in 42s

This commit is contained in:
2026-03-11 22:58:59 +01:00
parent 667fba9bdf
commit 1f31ea9509
2 changed files with 3 additions and 3 deletions

View File

@@ -15,7 +15,7 @@ repositories {
} }
dependencies { dependencies {
implementation("com.infendro:mac:1.4.0") implementation("com.infendro:mac:1.5.0")
} }
``` ```
@@ -24,7 +24,7 @@ dependencies {
```kotlin ```kotlin
fun main() { fun main() {
// create an HMAC instance using SHA1 // create an HMAC instance using SHA1
val hmac = HMAC(SHA1) val hmac = HMAC(SHA1())
// generate MAC // generate MAC
val key = "secret".encodeToByteArray() val key = "secret".encodeToByteArray()

View File

@@ -5,7 +5,7 @@ import com.infendro.plugin.token
import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl
group = "com.infendro" group = "com.infendro"
version = "1.4.0" version = "1.5.0"
plugins { plugins {
alias(libs.plugins.infendro) alias(libs.plugins.infendro)