1.3.1 Release #3

Merged
Infendro merged 2 commits from develop into main 2026-03-12 10:34:21 +00:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 767665180a - Show all commits

View File

@@ -16,7 +16,7 @@ repositories {
} }
dependencies { dependencies {
implementation("com.infendro:otp:1.3.0") implementation("com.infendro:otp:1.3.1")
} }
``` ```
@@ -26,7 +26,7 @@ dependencies {
fun main() { fun main() {
// create TOTP instance // create TOTP instance
val totp = TOTP( val totp = TOTP(
function = SHA1, function = SHA1(),
length = 6, length = 6,
period = 30.seconds, period = 30.seconds,
) )

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.3.0" version = "1.3.1"
plugins { plugins {
alias(libs.plugins.infendro) alias(libs.plugins.infendro)