Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Kotlin 1.7.0 support #565

Merged
merged 9 commits into from
Jul 1, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Bump compose
  • Loading branch information
hfhbd committed Jul 1, 2022
commit 36136d04554589e9bbb0f3c326a1964361082bc9
1 change: 1 addition & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ updates:
assignees:
- "hfhbd"
open-pull-requests-limit: 25
rebase-strategy: "disabled"
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
kotlin("multiplatform") version "1.7.0" apply false
kotlin("plugin.serialization") version "1.7.0" apply false
id("com.android.application") version "7.2.1" apply false
id("org.jetbrains.compose") version "0.0.0-on_kotlin_1.7.0-rc-dev705" apply false
id("org.jetbrains.compose") version "0.0.0-release1.2-integration-dev736" apply false
id("app.cash.sqldelight") version "2.0.0-alpha03" apply false
id("org.jetbrains.kotlinx.kover") version "0.5.1"
id("io.gitlab.arturbosch.detekt") version "1.20.0"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package app.softwork.composetodo.repository

import app.softwork.composetodo.dto.*
import app.cash.sqldelight.*
import app.softwork.composetodo.dto.*
import kotlinx.uuid.sqldelight.*

object IDConverter : ColumnAdapter<TodoDTO.ID, String> {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package app.softwork.composetodo.repository

import app.cash.sqldelight.coroutines.*
import app.cash.sqldelight.db.*
import app.softwork.composetodo.*
import app.softwork.composetodo.dto.*
import app.cash.sqldelight.db.*
import app.cash.sqldelight.coroutines.*
import kotlinx.coroutines.flow.*
import kotlinx.datetime.*
import kotlinx.uuid.*
Expand Down