Skip to content

Commit 1e79e57

Browse files
Release v2.2.20-0.0.5 (#59)
chore: update version references to 2.2.20-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.20-0.0.5 * Kotlin Version → 2.2.20 * KSP Version → 2.2.20-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.19 - Update project version in gradle.properties Co-authored-by: Seokjae Lee <seok9211@naver.com>
1 parent efbdc3e commit 1e79e57

File tree

5 files changed

+17
-16
lines changed

5 files changed

+17
-16
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 5 additions & 5 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.4"
31+
placeholder: "e.g., 2.2.20-0.0.5"
3232
validations:
3333
required: true
3434

@@ -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.3"
49+
placeholder: "e.g., 2.2.20-2.0.4"
5050
validations:
5151
required: true
5252

@@ -108,12 +108,12 @@ body:
108108
placeholder: |
109109
plugins {
110110
kotlin("jvm") version "2.2.20"
111-
id("com.google.devtools.ksp") version "2.2.20-2.0.3"
111+
id("com.google.devtools.ksp") version "2.2.20-2.0.4"
112112
}
113113
114114
dependencies {
115-
ksp("io.github.doljae:kotlin-logging-extensions:2.2.20-0.0.4")
116-
implementation("io.github.doljae:kotlin-logging-extensions:2.2.20-0.0.4")
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")
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.4"
49+
placeholder: "e.g., 2.2.20-0.0.5"
5050
validations:
5151
required: false
5252

.github/ISSUE_TEMPLATE/version_compatibility.yml

Lines changed: 2 additions & 2 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.4"
18+
placeholder: "e.g., 2.2.20-0.0.5"
1919
validations:
2020
required: true
2121

@@ -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.3"
36+
placeholder: "e.g., 2.2.20-2.0.4"
3737
validations:
3838
required: true
3939

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
66
[![Kotlin](https://img.shields.io/badge/kotlin-2.2.20-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.3-purple.svg)](https://github.com/google/ksp)
8+
[![KSP](https://img.shields.io/badge/KSP-2.2.20--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

@@ -50,8 +50,8 @@ repositories {
5050
}
5151

5252
dependencies {
53-
ksp("io.github.doljae:kotlin-logging-extensions:2.2.20-0.0.4")
54-
implementation("io.github.doljae:kotlin-logging-extensions:2.2.20-0.0.4")
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")
5555
implementation("io.github.oshai:kotlin-logging-jvm:7.0.13")
5656
implementation("ch.qos.logback:logback-classic:1.5.19") // Logger implementation required
5757
}
@@ -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.20-0.0.5` | `2.2.20` | `2.2.20-2.0.4` |
99100
| `2.2.20-0.0.4` | `2.2.20` | `2.2.20-2.0.4` |
100101
| `2.2.20-0.0.3` | `2.2.20` | `2.2.20-2.0.2` |
101102
| `2.2.10-0.0.3` | `2.2.10` | `2.2.0-2.0.2` |
@@ -117,8 +118,8 @@ plugins {
117118
}
118119

119120
dependencies {
120-
ksp("io.github.doljae:kotlin-logging-extensions:2.2.20-0.0.4")
121-
implementation("io.github.doljae:kotlin-logging-extensions:2.2.20-0.0.4")
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")
122123
implementation("io.github.oshai:kotlin-logging-jvm:7.0.13") // 5.0.0+
123124
}
124125
```
@@ -141,8 +142,8 @@ repositories {
141142
}
142143

143144
dependencies {
144-
ksp("io.github.doljae:kotlin-logging-extensions:2.2.20-0.0.4")
145-
implementation("io.github.doljae:kotlin-logging-extensions:2.2.20-0.0.4")
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")
146147
implementation("io.github.oshai:kotlin-logging-jvm:7.0.13")
147148
implementation("ch.qos.logback:logback-classic:1.5.19")
148149
}

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.4
6+
project.version=2.2.20-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)