Skip to content

Commit

Permalink
Bump to version 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TimOrtel committed Mar 4, 2024
1 parent da268ee commit 39467d2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ plugins {
android {
namespace = "de.tum.informatics.www1.artemis.native_app.android"

val versionName = "0.8.0"
val versionName = "0.9.0"
val versionCode =
if (!System.getenv("bamboo_buildNumber")
.isNullOrEmpty()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import de.tum.informatics.www1.artemis.native_app.feature.push.communication_not
CommunicationMessageEntity::class
],
exportSchema = true,
version = 8
version = 9
)
@TypeConverters(RoomTypeConverters::class)
abstract class AppDatabase : RoomDatabase() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ import kotlinx.serialization.Serializable
* A dashboard is a collection of courses.
*/
@Serializable
data class Dashboard(val courses: List<CourseWithScore>)
data class Dashboard(val courses: List<CourseWithScore> = emptyList())

0 comments on commit 39467d2

Please sign in to comment.