diff --git a/gradle.properties b/gradle.properties index 8e82db2b1..438fea03b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,7 +8,7 @@ org.gradle.jvmargs=-XX:MaxMetaspaceSize=2G # POM file GROUP=org.mobilenativefoundation.store -VERSION_NAME=5.1.0-SNAPSHOT +VERSION_NAME=5.1.0-alpha06 POM_PACKAGING=pom POM_DESCRIPTION = Store5 is a Kotlin Multiplatform network-resilient repository layer diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 46831ab1f..392b879e6 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -21,7 +21,7 @@ testCore = "1.6.1" kmmBridge = "0.3.2" ktlint = "0.39.0" kover = "0.9.0-RC" -store = "5.1.0-SNAPSHOT" +store = "5.1.0-alpha06" truth = "1.1.3" turbine = "1.2.0" binary-compatibility-validator = "0.15.0-Beta.2" diff --git a/tooling/plugins/src/main/kotlin/org/mobilenativefoundation/store/tooling/plugins/KotlinMultiplatformConventionPlugin.kt b/tooling/plugins/src/main/kotlin/org/mobilenativefoundation/store/tooling/plugins/KotlinMultiplatformConventionPlugin.kt index 5b5d27e50..29b01be69 100644 --- a/tooling/plugins/src/main/kotlin/org/mobilenativefoundation/store/tooling/plugins/KotlinMultiplatformConventionPlugin.kt +++ b/tooling/plugins/src/main/kotlin/org/mobilenativefoundation/store/tooling/plugins/KotlinMultiplatformConventionPlugin.kt @@ -174,7 +174,7 @@ object Versions { const val COMPILE_SDK = 34 const val MIN_SDK = 24 const val TARGET_SDK = 34 - const val STORE = "5.1.0-SNAPSHOT" + const val STORE = "5.1.0-alpha06" }