Skip to content

Commit

Permalink
- [release] v2.1.0-rc01
Browse files Browse the repository at this point in the history
  • Loading branch information
mikepenz committed Feb 21, 2025
1 parent 2d9c490 commit 56ee950
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ compose.desktop {
nativeDistributions {
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
packageName = "Storyblok Compose Desktop"
packageVersion = readPropertyOrElse("VERSION_NAME")
packageVersion = readPropertyOrElse("VERSION_NAME")!!.split("-").first()
description = "A small sample app to showcase the power of Storyblok's API"
copyright = "© 2025 Mike Penz. All rights reserved."
}
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ kotlin.code.style=official
# Publishing
##################################
GROUP=com.mikepenz
VERSION_NAME=2.0.0
VERSION_CODE=2000
VERSION_NAME=2.1.0-rc01
VERSION_CODE=2010

POM_DESCRIPTION=Storyblok
POM_GITHUB_REPO=mikepenz/storyblok-mp-SDK
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ class Storyblok(
private val API_ENDPOINT = Endpoints.EU.host
private val API_PATH = Endpoints.EU.path

private const val SDK_VERSION = "2.0.0"
private const val SDK_VERSION = "2.1.0-rc01"
private const val SDK_USER_AGENT = "storyblok-sdk-android/$SDK_VERSION"

private const val VERSION_PUBLISHED = "published"
Expand Down

0 comments on commit 56ee950

Please sign in to comment.