33[ ![ CI] ( https://github.com/doljae/kotlin-logging-extensions/actions/workflows/ci.yml/badge.svg )] ( https://github.com/doljae/kotlin-logging-extensions/actions/workflows/ci.yml )
44[ ![ Maven Central] ( https://img.shields.io/maven-central/v/io.github.doljae/kotlin-logging-extensions.svg?label=Maven%20Central )] ( https://central.sonatype.com/artifact/io.github.doljae/kotlin-logging-extensions )
55[ ![ License] ( https://img.shields.io/badge/License-Apache%202.0-blue.svg )] ( https://opensource.org/licenses/Apache-2.0 )
6- [ ![ Kotlin] ( https://img.shields.io/badge/kotlin-2.2.20 -blue.svg?logo=kotlin )] ( http://kotlinlang.org )
6+ [ ![ Kotlin] ( https://img.shields.io/badge/kotlin-2.2.21 -blue.svg?logo=kotlin )] ( http://kotlinlang.org )
77[ ![ kotlin-logging] ( https://img.shields.io/badge/kotlin--logging-5.0.0+-green.svg )] ( https://github.com/oshai/kotlin-logging )
8- [ ![ KSP] ( https://img.shields.io/badge/KSP-2.2.20 --2.0.4-purple.svg )] ( https://github.com/google/ksp )
8+ [ ![ KSP] ( https://img.shields.io/badge/KSP-2.2.21 --2.0.4-purple.svg )] ( https://github.com/google/ksp )
99
1010** Elegant [ kotlin-logging] ( https://github.com/oshai/kotlin-logging ) extensions for zero-boilerplate logger generation in Kotlin classes using [ KSP] ( https://github.com/google/ksp ) **
1111
@@ -41,19 +41,19 @@ class UserService {
4141Add to your ` build.gradle.kts ` :
4242``` kotlin
4343plugins {
44- kotlin(" jvm" ) version " 2.2.20 "
45- id(" com.google.devtools.ksp" ) version " 2.2.20 -2.0.4"
44+ kotlin(" jvm" ) version " 2.2.21 "
45+ id(" com.google.devtools.ksp" ) version " 2.2.21 -2.0.4"
4646}
4747
4848repositories {
4949 mavenCentral()
5050}
5151
5252dependencies {
53- ksp(" io.github.doljae:kotlin-logging-extensions:2.2.20 -0.0.5" )
54- implementation(" io.github.doljae:kotlin-logging-extensions:2.2.20 -0.0.5" )
53+ ksp(" io.github.doljae:kotlin-logging-extensions:2.2.21 -0.0.5" )
54+ implementation(" io.github.doljae:kotlin-logging-extensions:2.2.21 -0.0.5" )
5555 implementation(" io.github.oshai:kotlin-logging-jvm:7.0.13" )
56- implementation(" ch.qos.logback:logback-classic:1.5.19 " ) // Logger implementation required
56+ implementation(" ch.qos.logback:logback-classic:1.5.21 " ) // Logger implementation required
5757}
5858```
5959
@@ -96,6 +96,7 @@ That's it! The logger is automatically available with the class name (`OrderProc
9696
9797| Library | Kotlin | KSP |
9898| ---------| --------| -----|
99+ | ` 2.2.21-0.0.5 ` | ` 2.2.21 ` | ` 2.2.21-2.0.4 ` |
99100| ` 2.2.20-0.0.5 ` | ` 2.2.20 ` | ` 2.2.20-2.0.4 ` |
100101| ` 2.2.20-0.0.4 ` | ` 2.2.20 ` | ` 2.2.20-2.0.4 ` |
101102| ` 2.2.20-0.0.3 ` | ` 2.2.20 ` | ` 2.2.20-2.0.2 ` |
@@ -111,15 +112,15 @@ That's it! The logger is automatically available with the class name (`OrderProc
1111123 . ** Use the exact KSP version** shown in the table
112113
113114``` kotlin
114- // For Kotlin 2.2.20 projects:
115+ // For Kotlin 2.2.21 projects:
115116plugins {
116- kotlin(" jvm" ) version " 2.2.20 "
117- id(" com.google.devtools.ksp" ) version " 2.2.20 -2.0.4"
117+ kotlin(" jvm" ) version " 2.2.21 "
118+ id(" com.google.devtools.ksp" ) version " 2.2.21 -2.0.4"
118119}
119120
120121dependencies {
121- ksp(" io.github.doljae:kotlin-logging-extensions:2.2.20 -0.0.5" )
122- implementation(" io.github.doljae:kotlin-logging-extensions:2.2.20 -0.0.5" )
122+ ksp(" io.github.doljae:kotlin-logging-extensions:2.2.21 -0.0.5" )
123+ implementation(" io.github.doljae:kotlin-logging-extensions:2.2.21 -0.0.5" )
123124 implementation(" io.github.oshai:kotlin-logging-jvm:7.0.13" ) // 5.0.0+
124125}
125126```
@@ -133,19 +134,19 @@ dependencies {
133134### Maven Central (Recommended)
134135``` kotlin
135136plugins {
136- kotlin(" jvm" ) version " 2.2.20 "
137- id(" com.google.devtools.ksp" ) version " 2.2.20 -2.0.4"
137+ kotlin(" jvm" ) version " 2.2.21 "
138+ id(" com.google.devtools.ksp" ) version " 2.2.21 -2.0.4"
138139}
139140
140141repositories {
141142 mavenCentral()
142143}
143144
144145dependencies {
145- ksp(" io.github.doljae:kotlin-logging-extensions:2.2.20 -0.0.5" )
146- implementation(" io.github.doljae:kotlin-logging-extensions:2.2.20 -0.0.5" )
146+ ksp(" io.github.doljae:kotlin-logging-extensions:2.2.21 -0.0.5" )
147+ implementation(" io.github.doljae:kotlin-logging-extensions:2.2.21 -0.0.5" )
147148 implementation(" io.github.oshai:kotlin-logging-jvm:7.0.13" )
148- implementation(" ch.qos.logback:logback-classic:1.5.19 " )
149+ implementation(" ch.qos.logback:logback-classic:1.5.21 " )
149150}
150151```
151152
0 commit comments