Skip to content

Commit

Permalink
Kotlin 1.9.20 / Gradle 8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
romainbsl committed Nov 18, 2023
1 parent a922f44 commit c13d7a5
Show file tree
Hide file tree
Showing 11 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ plugins {

allprojects {
group = "org.kodein.log"
version = "1.0.1"
version = "1.1.0"
}
6 changes: 4 additions & 2 deletions canard/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ plugins {
}

kotlin.kodein {
all()
allNative()
js()
wasmJs()
// wasmWasi()

jvm {
target.setCompileClasspath()
Expand Down Expand Up @@ -36,7 +39,6 @@ kotlin.kodein {
dependsOn(defaultNativeMain)
}
}

}

kodeinUpload {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
package org.kodein.log.frontend

import kotlinx.cinterop.ExperimentalForeignApi
import org.kodein.log.LogFrontend
import org.kodein.log.LogReceiver
import org.kodein.log.Logger
import org.kodein.log.darwin.*

@OptIn(ExperimentalForeignApi::class)
public val darwinFrontend: LogFrontend = LogFrontend { tag ->
val log = darwin_log_create(tag.pkg, tag.name)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import kotlinx.cinterop.cstr
import platform.posix.fdopen
import platform.posix.fprintf
import kotlin.experimental.ExperimentalNativeApi
import kotlin.native.concurrent.SharedImmutable


@OptIn(ExperimentalForeignApi::class)
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
kotlinx-datetime = "0.4.0"
kotlinx-datetime = "0.4.1"
slf4j = "1.7.36"

[libraries]
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
maven(url = "https://raw.githubusercontent.com/kosi-libs/kodein-internal-gradle-plugin/mvn-repo")
}
dependencies {
classpath("org.kodein.internal.gradle:kodein-internal-gradle-settings:8.2.2")
classpath("org.kodein.internal.gradle:kodein-internal-gradle-settings:8.3.0")
}
}

Expand Down

0 comments on commit c13d7a5

Please sign in to comment.