diff --git a/README.md b/README.md index e15e4d44..f0911f8a 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ #### Android ```kotlin -implementation "org.mobilenativefoundation.store:store5:5.1.0-alpha02" +implementation "org.mobilenativefoundation.store:store5:5.1.0-alpha03" ``` #### Multiplatform (Common, JVM, Native, JS) @@ -42,7 +42,7 @@ implementation "org.mobilenativefoundation.store:store5:5.1.0-alpha02" ```kotlin commonMain { dependencies { - implementation("org.mobilenativefoundation.store:store5:5.1.0-alpha02") + implementation("org.mobilenativefoundation.store:store5:5.1.0-alpha03") } } ``` diff --git a/gradle.properties b/gradle.properties index 8e82db2b..6b13fd24 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-alpha03 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 2b19f2aa..dbb3af7e 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -21,7 +21,7 @@ testCore = "1.5.0" kmmBridge = "0.3.2" ktlint = "0.39.0" kover = "0.6.0" -store = "5.1.0-alpha02" +store = "5.1.0-alpha03" truth = "1.1.3" 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 0bb22f8f..a80e70e1 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 @@ -172,7 +172,7 @@ object Versions { const val COMPILE_SDK = 34 const val MIN_SDK = 31 const val TARGET_SDK = 34 - const val STORE = "5.1.0-alpha02" + const val STORE = "5.1.0-alpha03" }