Skip to content

Commit

Permalink
Version bump 0.1.4 Woops!
Browse files Browse the repository at this point in the history
  • Loading branch information
fenimore committed May 31, 2021
1 parent bc4b201 commit 17636c1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "com.timenotclocks.bookcase"
minSdkVersion 26
targetSdkVersion 30
versionCode 13
versionName "0.1.3"
versionCode 14
versionName "0.1.4"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down
Binary file modified app/release/app-release.apk
Binary file not shown.
4 changes: 2 additions & 2 deletions app/release/output-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
{
"type": "SINGLE",
"filters": [],
"versionCode": 13,
"versionName": "0.1.3",
"versionCode": 14,
"versionName": "0.1.4",
"outputFile": "app-release.apk"
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ abstract class BookDatabase : RoomDatabase() {
database.execSQL("ALTER TABLE books ADD COLUMN progress INTEGER")
}
}
val MIGRATION_6_7 = object : Migration(5, 6) {
val MIGRATION_6_7 = object : Migration(6, 7) {
override fun migrate(database: SupportSQLiteDatabase) {
database.execSQL("ALTER TABLE books ADD COLUMN description TEXT")
}
Expand Down

0 comments on commit 17636c1

Please sign in to comment.