From 767665180a445bd3deadf9ca548a34f16ec1da8b Mon Sep 17 00:00:00 2001 From: Infendro Date: Thu, 12 Mar 2026 11:26:23 +0100 Subject: [PATCH] Bump version to 1.3.1 --- README.md | 4 ++-- build.gradle.kts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 332cc31..9cacced 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ repositories { } dependencies { - implementation("com.infendro:otp:1.3.0") + implementation("com.infendro:otp:1.3.1") } ``` @@ -26,7 +26,7 @@ dependencies { fun main() { // create TOTP instance val totp = TOTP( - function = SHA1, + function = SHA1(), length = 6, period = 30.seconds, ) diff --git a/build.gradle.kts b/build.gradle.kts index 267fc8f..1e920ac 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.3.0" +version = "1.3.1" plugins { alias(libs.plugins.infendro)