From d503fbfc1829f6b4887def147ec7cf844be2dee4 Mon Sep 17 00:00:00 2001 From: Matt Ramotar Date: Sun, 7 Jul 2024 15:07:30 -0400 Subject: [PATCH] Prepare for development (#650) Signed-off-by: Matt Ramotar --- gradle.properties | 2 +- gradle/libs.versions.toml | 2 +- .../tooling/plugins/KotlinMultiplatformConventionPlugin.kt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gradle.properties b/gradle.properties index 2b0c5b64f..8e82db2b1 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-alpha04 +VERSION_NAME=5.1.0-SNAPSHOT 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 a907fda50..ed3d58e54 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-alpha04" +store = "5.1.0-SNAPSHOT" 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 0c8f187c3..e197911c8 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-alpha04" + const val STORE = "5.1.0-SNAPSHOT" }