From f957190b50de2174be0ce16caa5b0d4508f2b23e Mon Sep 17 00:00:00 2001 From: JohnLCaron Date: Sun, 18 Feb 2024 09:51:21 -0700 Subject: [PATCH] up version to 2.04 --- egklib/build.gradle.kts | 2 +- egklib/src/commonMain/kotlin/electionguard/core/Utils.kt | 3 +-- egkliball/build.gradle.kts | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/egklib/build.gradle.kts b/egklib/build.gradle.kts index bf6cca24..fba4d516 100644 --- a/egklib/build.gradle.kts +++ b/egklib/build.gradle.kts @@ -10,7 +10,7 @@ repositories { } group = "electionguard-kotlin-multiplatform" -version = "2.0.3-SNAPSHOT" +version = "2.0.4-SNAPSHOT" kotlin { jvm { diff --git a/egklib/src/commonMain/kotlin/electionguard/core/Utils.kt b/egklib/src/commonMain/kotlin/electionguard/core/Utils.kt index 4e0d9d8a..ebd12722 100644 --- a/egklib/src/commonMain/kotlin/electionguard/core/Utils.kt +++ b/egklib/src/commonMain/kotlin/electionguard/core/Utils.kt @@ -106,8 +106,7 @@ fun List.noNullValuesOrNull(): List? { /** * Normally, Kotlin's `Enum.valueOf` or [enumValueOf] method will throw an exception for an invalid - * input. This method will instead return `null` if the string doesn't map to a valid value of the - * enum. + * input. This method will instead return `null` if the string doesn't map to a valid value of the enum. */ inline fun > safeEnumValueOf(name: String?): T? { if (name == null) { diff --git a/egkliball/build.gradle.kts b/egkliball/build.gradle.kts index 02e04af5..27d96597 100644 --- a/egkliball/build.gradle.kts +++ b/egkliball/build.gradle.kts @@ -9,7 +9,7 @@ repositories { } dependencies { - implementation(files("../egklib/build/libs/egklib-jvm-2.0.3-SNAPSHOT.jar")) // add the library to the fatJar + implementation(files("../egklib/build/libs/egklib-jvm-2.0.4-SNAPSHOT.jar")) // add the library to the fatJar implementation(libs.bundles.eglib) implementation(libs.logback.classic) }