Skip to content

Commit 8d20ea7

Browse files
Release v2.2.21-0.0.5 (#67)
chore: update version references to 2.2.21-0.0.5 - Update README.md badges, dependency examples, build script versions and version compatibility - Update issue template placeholders with build script versions: * Library Version → 2.2.21-0.0.5 * Kotlin Version → 2.2.21 * KSP Version → 2.2.21-2.0.4 * kotlin-logging-jvm Version → 7.0.13 * kotlin-logging Dependency → io.github.oshai:kotlin-logging-jvm:7.0.13 * logback Version → 1.5.21 - Update project version in gradle.properties Co-authored-by: Seokjae Lee <seok9211@naver.com>
1 parent b730b3b commit 8d20ea7

File tree

5 files changed

+30
-29
lines changed

5 files changed

+30
-29
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ body:
2828
attributes:
2929
label: Library Version
3030
description: Which version of kotlin-logging-extensions are you using?
31-
placeholder: "e.g., 2.2.20-0.0.5"
31+
placeholder: "e.g., 2.2.21-0.0.5"
3232
validations:
3333
required: true
3434

@@ -37,7 +37,7 @@ body:
3737
attributes:
3838
label: Kotlin Version
3939
description: Which Kotlin version are you using?
40-
placeholder: "e.g., 2.2.20"
40+
placeholder: "e.g., 2.2.21"
4141
validations:
4242
required: true
4343

@@ -46,7 +46,7 @@ body:
4646
attributes:
4747
label: KSP Version
4848
description: Which KSP version are you using?
49-
placeholder: "e.g., 2.2.20-2.0.4"
49+
placeholder: "e.g., 2.2.21-2.0.4"
5050
validations:
5151
required: true
5252

@@ -107,13 +107,13 @@ body:
107107
render: kotlin
108108
placeholder: |
109109
plugins {
110-
kotlin("jvm") version "2.2.20"
111-
id("com.google.devtools.ksp") version "2.2.20-2.0.4"
110+
kotlin("jvm") version "2.2.21"
111+
id("com.google.devtools.ksp") version "2.2.21-2.0.4"
112112
}
113113
114114
dependencies {
115-
ksp("io.github.doljae:kotlin-logging-extensions:2.2.20-0.0.5")
116-
implementation("io.github.doljae:kotlin-logging-extensions:2.2.20-0.0.5")
115+
ksp("io.github.doljae:kotlin-logging-extensions:2.2.21-0.0.5")
116+
implementation("io.github.doljae:kotlin-logging-extensions:2.2.21-0.0.5")
117117
implementation("io.github.oshai:kotlin-logging-jvm:7.0.7")
118118
}
119119
validations:

.github/ISSUE_TEMPLATE/question.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ body:
4646
attributes:
4747
label: Library Version
4848
description: Which version of kotlin-logging-extensions are you using?
49-
placeholder: "e.g., 2.2.20-0.0.5"
49+
placeholder: "e.g., 2.2.21-0.0.5"
5050
validations:
5151
required: false
5252

.github/ISSUE_TEMPLATE/version_compatibility.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ body:
1515
attributes:
1616
label: kotlin-logging-extensions Version
1717
description: Which version are you using?
18-
placeholder: "e.g., 2.2.20-0.0.5"
18+
placeholder: "e.g., 2.2.21-0.0.5"
1919
validations:
2020
required: true
2121

@@ -24,7 +24,7 @@ body:
2424
attributes:
2525
label: Your Kotlin Version
2626
description: Which Kotlin version are you using?
27-
placeholder: "e.g., 2.2.20"
27+
placeholder: "e.g., 2.2.21"
2828
validations:
2929
required: true
3030

@@ -33,7 +33,7 @@ body:
3333
attributes:
3434
label: Your KSP Version
3535
description: Which KSP version are you using?
36-
placeholder: "e.g., 2.2.20-2.0.4"
36+
placeholder: "e.g., 2.2.21-2.0.4"
3737
validations:
3838
required: true
3939

README.md

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
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 {
4141
Add to your `build.gradle.kts`:
4242
```kotlin
4343
plugins {
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

4848
repositories {
4949
mavenCentral()
5050
}
5151

5252
dependencies {
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
111112
3. **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:
115116
plugins {
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

120121
dependencies {
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
135136
plugins {
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

140141
repositories {
141142
mavenCentral()
142143
}
143144

144145
dependencies {
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

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ksp.useKSP2=true
33

44
# Project information
55
project.group=io.github.doljae
6-
project.version=2.2.20-0.0.5
6+
project.version=2.2.21-0.0.5
77
project.artifactId=kotlin-logging-extensions
88
project.description=Kotlin Logging Extensions
99
project.url=https://github.com/doljae/kotlin-logging-extensions

0 commit comments

Comments
 (0)