Skip to content

Commit e8b2bf7

Browse files
committed
Release 0.5.9 Patch 4
1 parent 0d4eac4 commit e8b2bf7

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

build-logic/structure/src/main/kotlin/DefaultConfig.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ object DefaultConfig {
44
const val appId = "com.looker.droidify"
55
const val compileSdk = 34
66
const val minSdk = 23
7-
const val versionCode = 593
8-
const val versionName = "0.5.9 Patch 3"
7+
const val versionCode = 594
8+
const val versionName = "0.5.9 Patch 4"
99
}

metadata/en-US/changelogs/594.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Fixes:
2+
- Duplicate Repositories

update.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ code $changelog_file
7272
# Ask for confirmation before creating a Git tag
7373
read -p "Do you want to create a Git tag for version $git_tag? (y/n): " -r
7474
if [[ $REPLY =~ ^[Yy]$ ]]; then
75-
git commit -A -m "Release $version_name"
75+
git add -A
76+
git commit -m "Release $version_name"
7677
# Create a Git tag
7778
git tag "$git_tag"
7879
echo "Git tag '$git_tag' created."

0 commit comments

Comments
 (0)