Skip to content

Commit

Permalink
renovate: update minor-updates
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Sep 1, 2023
1 parent 6f9a64b commit c0e0cc5
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
12 changes: 6 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import org.jetbrains.compose.desktop.application.dsl.TargetFormat
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
val kotlinVersion = "1.9.0"
val kotlinVersion = "1.9.10"
kotlin("jvm") version kotlinVersion
kotlin("plugin.serialization") version kotlinVersion
id("org.jetbrains.compose") version "1.4.3"
id("org.jetbrains.compose") version "1.5.0"
id("io.gitlab.arturbosch.detekt") version "1.23.1"
}

Expand All @@ -23,7 +23,7 @@ dependencies {
implementation(compose.desktop.currentOs)
implementation(compose.materialIconsExtended)

val ktorVersion = "2.3.2"
val ktorVersion = "2.3.4"
implementation("io.ktor:ktor-client-core:$ktorVersion")
implementation("io.ktor:ktor-client-cio:$ktorVersion")
implementation("io.ktor:ktor-client-content-negotiation:$ktorVersion")
Expand All @@ -41,12 +41,12 @@ dependencies {

val kermitVersion = "2.0.0-RC5"
implementation("co.touchlab:kermit:$kermitVersion")
implementation("io.sentry:sentry:6.27.0")
implementation("io.sentry:sentry:6.28.0")

implementation("org.apache.pdfbox:pdfbox:3.0.0-RC1")
implementation("org.apache.pdfbox:pdfbox:3.0.0")
runtimeOnly("org.jetbrains.kotlinx:kotlinx-coroutines-swing:1.7.3") // Adds a Main Dispatcher for Desktop

implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.1")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.0")
implementation(kotlin("reflect"))

testImplementation(kotlin("test"))
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
3 changes: 2 additions & 1 deletion gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ done
# This is normally unused
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pluginManagement {
rootProject.name = "Mediator"

plugins {
id("org.danilopianini.gradle-pre-commit-git-hooks") version "1.1.9"
id("org.danilopianini.gradle-pre-commit-git-hooks") version "1.1.10"
}

gitHooks {
Expand Down

0 comments on commit c0e0cc5

Please sign in to comment.