Skip to content

Commit

Permalink
Merge branch 'main' into watchos
Browse files Browse the repository at this point in the history
  • Loading branch information
hfhbd authored Sep 13, 2022
2 parents 2596077 + 77c2356 commit 493da07
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion backend/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jib {
dependencies {
implementation(projects.shared)

val ktor = "2.1.0"
val ktor = "2.1.1"
implementation("io.ktor:ktor-server-cio:$ktor")
implementation("io.ktor:ktor-server-cors:$ktor")
implementation("io.ktor:ktor-server-auth-jwt:$ktor")
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import io.gitlab.arturbosch.detekt.*
plugins {
kotlin("multiplatform") version "1.7.10" apply false
kotlin("plugin.serialization") version "1.7.10" apply false
id("org.jetbrains.compose") version "1.2.0-alpha01-dev774" apply false
id("org.jetbrains.compose") version "1.2.0-alpha01-dev786" apply false
id("app.cash.sqldelight") version "2.0.0-alpha03" apply false

id("com.android.application") version "7.2.2" apply false
Expand Down
2 changes: 1 addition & 1 deletion clients/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ kotlin {

sourceSets {
val sqlDelight = "2.0.0-alpha03"
val ktor = "2.1.0"
val ktor = "2.1.1"
commonMain {
dependencies {
api(projects.shared)
Expand Down
2 changes: 1 addition & 1 deletion desktop/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
dependencies {
implementation(projects.composeClients)

val ktor = "2.1.0"
val ktor = "2.1.1"
implementation("io.ktor:ktor-client-cio:$ktor")
implementation("app.cash.sqldelight:sqlite-driver:2.0.0-alpha03")
implementation(compose.desktop.currentOs)
Expand Down
2 changes: 1 addition & 1 deletion shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ kotlin {

api("app.softwork:kotlinx-uuid-core:0.0.17")

val ktor = "2.1.0"
val ktor = "2.1.1"
api("io.ktor:ktor-client-core:$ktor")
api("io.ktor:ktor-resources:$ktor")
api("io.ktor:ktor-client-resources:$ktor")
Expand Down
10 changes: 5 additions & 5 deletions web/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dependencies {
implementation(projects.clients)

implementation(compose.web.core)
implementation("app.softwork:bootstrap-compose:0.1.7")
implementation("app.softwork:bootstrap-compose:0.1.8")
implementation("app.softwork:routing-compose:0.2.8")
implementation(npm("sql.js", "1.7.0"))

Expand All @@ -37,8 +37,8 @@ dependencies {

licensee {
allow("Apache-2.0")
allowDependency("org.jetbrains.compose.web", "web-core-js", "1.2.0-alpha01-dev774")
allowDependency("org.jetbrains.compose.web", "web-core", "1.2.0-alpha01-dev774")
allowDependency("org.jetbrains.compose.web", "internal-web-core-runtime-js", "1.2.0-alpha01-dev774")
allowDependency("org.jetbrains.compose.web", "internal-web-core-runtime", "1.2.0-alpha01-dev774")
allowDependency("org.jetbrains.compose.web", "web-core-js", "1.2.0-alpha01-dev778")
allowDependency("org.jetbrains.compose.web", "web-core", "1.2.0-alpha01-dev778")
allowDependency("org.jetbrains.compose.web", "internal-web-core-runtime-js", "1.2.0-alpha01-dev778")
allowDependency("org.jetbrains.compose.web", "internal-web-core-runtime", "1.2.0-alpha01-dev778")
}

0 comments on commit 493da07

Please sign in to comment.