Skip to content

Commit

Permalink
Bump some versions
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi committed Aug 31, 2023
1 parent d582942 commit d39e8eb
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 12 deletions.
14 changes: 11 additions & 3 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion app/desktop/uwp_helper/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import org.jetbrains.kotlin.org.jline.utils.OSUtils

plugins {
java
}
Expand Down Expand Up @@ -28,7 +30,11 @@ tasks {
val command = if(System.getenv("GITHUB_RUN_NUMBER") != null) {
rootProject.file("jextract-20/bin/jextract.bat").absolutePath
} else {
"jextract"
if (OSUtils.IS_WINDOWS) {
"jextract.bat"
} else {
"jextract"
}
}

commandLine(
Expand Down
6 changes: 1 addition & 5 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,7 @@ repositories {

dependencies {
implementation(libs.google.artifactregistry)
implementation(libs.kotlinx.serialization) {
version {
strictly("1.6.0-RC")
}
}
implementation(libs.kotlinx.serialization)
}

java {
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ ktor-serialization-kotlinx-json = { group = "io.ktor", name = "ktor-serializatio
mikbot-ktor = { group = "dev.schlaubi", name = "mikbot-ktor", version.ref = "mikbot" }
mikbot-music = { group = "dev.schlaubi", name = "mikbot-music-player", version = "3.1.8-SNAPSHOT" }

imageloader = { group = "io.github.qdsfdhvh", name = "image-loader", version = "1.6.4" }
imageloader = { group = "io.github.qdsfdhvh", name = "image-loader", version = "1.6.5" }

kotlin-logging = { group = "io.github.microutils", name = "kotlin-logging", version = "3.0.5" }

Expand Down

0 comments on commit d39e8eb

Please sign in to comment.