diff --git a/README.md b/README.md index 259b3b8e..9bee7843 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ #### Android ```kotlin -implementation "org.mobilenativefoundation.store:store5:5.1.0-alpha04" +implementation "org.mobilenativefoundation.store:store5:5.1.0-alpha05" ``` #### Multiplatform (Common, JVM, Native, JS) @@ -42,7 +42,7 @@ implementation "org.mobilenativefoundation.store:store5:5.1.0-alpha04" ```kotlin commonMain { dependencies { - implementation("org.mobilenativefoundation.store:store5:5.1.0-alpha04") + implementation("org.mobilenativefoundation.store:store5:5.1.0-alpha05") } } ``` diff --git a/gradle.properties b/gradle.properties index 8e82db2b..fddf2053 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-alpha05 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 2a973b84..8c173e28 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.6.0" -store = "5.1.0-SNAPSHOT" +store = "5.1.0-alpha05" 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 e197911c..b28b22b6 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 = 24 const val TARGET_SDK = 34 - const val STORE = "5.1.0-SNAPSHOT" + const val STORE = "5.1.0-alpha05" }