From 1f31ea95094cc30219cd4d9f02ef6228a671e16b Mon Sep 17 00:00:00 2001 From: Infendro Date: Wed, 11 Mar 2026 22:58:59 +0100 Subject: [PATCH] Bump version to 1.5.0 --- README.md | 4 ++-- build.gradle.kts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2b1a4b3..f869a51 100644 --- a/README.md +++ b/README.md @@ -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() diff --git a/build.gradle.kts b/build.gradle.kts index eadff65..887093e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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)