Skip to content

Commit

Permalink
kotlin 1.4.30
Browse files Browse the repository at this point in the history
  • Loading branch information
Romain Boisselle committed Feb 5, 2021
1 parent cc3ca16 commit a4bce24
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {

allprojects {
group = "org.kodein.log"
version = "0.8.0"
version = "0.9.0"

repositories {
maven(url = "https://kotlin.bintray.com/kotlinx")
Expand Down
2 changes: 1 addition & 1 deletion kodein-log/src/commonMain/kotlin/org/kodein/log/Logger.kt
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class Logger(
}

@PublishedApi
internal val frontends = (if (frontEnds.isNotEmpty()) frontEnds else defaultFrontEnds) .map { it.getReceiverFor(tag) }
internal val frontends: List<LogReceiver> = (frontEnds.ifEmpty { defaultFrontEnds }) .map { it.getReceiverFor(tag) }

public enum class Level(public val severity: Int) { DEBUG(0), INFO(1), WARNING(2), ERROR(3) }

Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
maven(url = "https://dl.bintray.com/kodein-framework/Kodein-Internal-Gradle")
}
dependencies {
classpath("org.kodein.internal.gradle:kodein-internal-gradle-settings:5.0.1")
classpath("org.kodein.internal.gradle:kodein-internal-gradle-settings:5.5.0")
}
}

Expand Down

0 comments on commit a4bce24

Please sign in to comment.