Skip to content

Commit

Permalink
Release 0.5.9 Patch 4
Browse files Browse the repository at this point in the history
  • Loading branch information
Iamlooker committed Oct 23, 2023
1 parent 0d4eac4 commit e8b2bf7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build-logic/structure/src/main/kotlin/DefaultConfig.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ object DefaultConfig {
const val appId = "com.looker.droidify"
const val compileSdk = 34
const val minSdk = 23
const val versionCode = 593
const val versionName = "0.5.9 Patch 3"
const val versionCode = 594
const val versionName = "0.5.9 Patch 4"
}
2 changes: 2 additions & 0 deletions metadata/en-US/changelogs/594.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Fixes:
- Duplicate Repositories
3 changes: 2 additions & 1 deletion update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ code $changelog_file
# Ask for confirmation before creating a Git tag
read -p "Do you want to create a Git tag for version $git_tag? (y/n): " -r
if [[ $REPLY =~ ^[Yy]$ ]]; then
git commit -A -m "Release $version_name"
git add -A
git commit -m "Release $version_name"
# Create a Git tag
git tag "$git_tag"
echo "Git tag '$git_tag' created."
Expand Down

0 comments on commit e8b2bf7

Please sign in to comment.