Skip to content

Commit

Permalink
next version + kotlin 1.4.32
Browse files Browse the repository at this point in the history
  • Loading branch information
Romain Boisselle committed Apr 6, 2021
1 parent 3d8fbd6 commit 91d6a3b
Show file tree
Hide file tree
Showing 3 changed files with 6 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,5 +4,5 @@ plugins {

allprojects {
group = "org.kodein.log"
version = "0.10.1"
version = "0.11.0"
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ class AllowListTests {
@Test
fun test_01_BlockList() {
val frontend = TestFrontend()
val conditions = blockList(packages = listOf("org.kodein.log"))
val conditions = blockList(listOf(Tag(this::class)))
// TODO This doesn't work for js
// org.kodein.log.AllowListTests => kotlin.js.AllowListTests
// val conditions = blockList(packages = listOf("org.kodein.log"))
val factory = LoggerFactory(listOf(frontend), listOf(conditions))
newLogger(factory).info { "THIS" }
factory.newLogger<String>().warning { "STRING" }
Expand Down
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/Kodein-Framework/kodein-internal-gradle-plugin/mvn-repo")
}
dependencies {
classpath("org.kodein.internal.gradle:kodein-internal-gradle-settings:6.3.0")
classpath("org.kodein.internal.gradle:kodein-internal-gradle-settings:6.4.1")
}
}

Expand Down

0 comments on commit 91d6a3b

Please sign in to comment.