Skip to content

Commit 13b3f27

Browse files
committed
Bump version to 2.1.0
1 parent e99a9f0 commit 13b3f27

File tree

5 files changed

+15
-11
lines changed

5 files changed

+15
-11
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## Boring YURI 2.1.0 (2024-11-25)
2+
* Support Kotlin `2.0.21` and KSP `2.0.21-1.0.25`
3+
* Upgrade dependencies and build tools
4+
15
## Boring YURI 2.0.1 (2023-10-04)
26
* Fix generating imports for types in `TypeAdapterFactory` with KSP.
37
* Fix signing maven artifacts ([Bug #40](https://github.com/anton-novikau/boringYURI/issues/40)).

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1061,8 +1061,8 @@ plugins {
10611061
}
10621062

10631063
dependencies {
1064-
implementation("com.github.anton-novikau:boringyuri-api:2.0.2")
1065-
ksp("com.github.anton-novikau:boringyuri-processor-ksp:2.0.2")
1064+
implementation("com.github.anton-novikau:boringyuri-api:2.1.0")
1065+
ksp("com.github.anton-novikau:boringyuri-processor-ksp:2.1.0")
10661066
}
10671067
```
10681068

@@ -1074,17 +1074,17 @@ plugins {
10741074
}
10751075

10761076
dependencies {
1077-
implementation("com.github.anton-novikau:boringyuri-api:2.0.2")
1078-
kapt("com.github.anton-novikau:boringyuri-processor:2.0.2")
1077+
implementation("com.github.anton-novikau:boringyuri-api:2.1.0")
1078+
kapt("com.github.anton-novikau:boringyuri-processor:2.1.0")
10791079
}
10801080
```
10811081

10821082
With Java only:
10831083

10841084
```groovy
10851085
dependencies {
1086-
implementation "com.github.anton-novikau:boringyuri-api:2.0.2"
1087-
annotationProcessor "com.github.anton-novikau:boringyuri-processor:2.0.2"
1086+
implementation "com.github.anton-novikau:boringyuri-api:2.1.0"
1087+
annotationProcessor "com.github.anton-novikau:boringyuri-processor:2.1.0"
10881088
}
10891089
```
10901090

dagger-ksp/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ To add `dagger` extension for `Boring Yuri`, include the following in your app m
5454
```kotlin
5555
dependencies {
5656
...
57-
ksp("com.github.anton-novikau:boringyuri-dagger-ksp:2.0.2")
57+
ksp("com.github.anton-novikau:boringyuri-dagger-ksp:2.1.0")
5858
}
5959
```
6060

dagger/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ With Kotlin KSP:
5858
```kotlin
5959
dependencies {
6060
...
61-
ksp("com.github.anton-novikau:boringyuri-dagger-ksp:2.0.2")
61+
ksp("com.github.anton-novikau:boringyuri-dagger-ksp:2.1.0")
6262
}
6363
```
6464

@@ -67,7 +67,7 @@ With Kotlin KAPT:
6767
```kotlin
6868
dependencies {
6969
...
70-
kapt("com.github.anton-novikau:boringyuri-dagger:2.0.2")
70+
kapt("com.github.anton-novikau:boringyuri-dagger:2.1.0")
7171
}
7272
```
7373

@@ -76,7 +76,7 @@ With Java only:
7676
```groovy
7777
dependencies {
7878
...
79-
annotationProcessor "com.github.anton-novikau:boringyuri-dagger:2.0.2"
79+
annotationProcessor "com.github.anton-novikau:boringyuri-dagger:2.1.0"
8080
}
8181
```
8282

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Publishing
22
USER = novikau
33
GROUP = com.github.anton-novikau
4-
VERSION_NAME = 2.0.2
4+
VERSION_NAME = 2.1.0
55

66
POM_DESCRIPTION = An annotation processor library for Uri building and parsing routines.
77
POM_INCEPTION_YEAR=2020

0 commit comments

Comments
 (0)