1.5.0 Release #5

Merged
Infendro merged 2 commits from develop into main 2026-03-11 22:07:23 +00:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 1f31ea9509 - Show all commits

View File

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

View File

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