Skip to content

Commit

Permalink
0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hoc081098 authored Sep 28, 2023
1 parent 6101948 commit 6d73ca5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions buildSrc/src/main/kotlin/deps.kt
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ object appConfig {
const val targetSdkVersion = 34

private const val MAJOR = 0
private const val MINOR = 0
private const val PATCH = 2
private const val MINOR = 1
private const val PATCH = 0
const val versionCode = MAJOR * 10000 + MINOR * 100 + PATCH
const val versionName = "$MAJOR.$MINOR.$PATCH-SNAPSHOT"
const val versionName = "$MAJOR.$MINOR.$PATCH"
}

object deps {
Expand Down
4 changes: 2 additions & 2 deletions iosApp/iosApp.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 0.0.1;
MARKETING_VERSION = 0.1.0;
PRODUCT_BUNDLE_IDENTIFIER = "com.hoc081098.github-search-kmm.iosApp";
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
Expand All @@ -453,7 +453,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 0.0.1;
MARKETING_VERSION = 0.1.0;
PRODUCT_BUNDLE_IDENTIFIER = "com.hoc081098.github-search-kmm.iosApp";
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
Expand Down

0 comments on commit 6d73ca5

Please sign in to comment.