Skip to content

Commit ae171ea

Browse files
Prepare release of Kotlin AutoMapper 0.2.2
1 parent 4337a01 commit ae171ea

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,16 @@ Ensure you have the `ksp` plugin applied in your module's `build.gradle.kts` fil
3030
sourceSets {
3131
commonMain.dependencies {
3232
// 1. Add the annotation dependency to commonMain
33-
implementation("io.github.jacksever.automapper:annotation:0.2.1")
33+
implementation("io.github.jacksever.automapper:annotation:0.2.2")
3434
}
3535
}
3636
}
3737

3838
// 2. Apply the processor to the targets you need
3939
dependencies {
40-
add("kspJs", "io.github.jacksever.automapper:processor:0.2.1")
41-
add("kspJvm", "io.github.jacksever.automapper:processor:0.2.1")
42-
add("kspIosX64", "io.github.jacksever.automapper:processor:0.2.1")
40+
add("kspJs", "io.github.jacksever.automapper:processor:0.2.2")
41+
add("kspJvm", "io.github.jacksever.automapper:processor:0.2.2")
42+
add("kspIosX64", "io.github.jacksever.automapper:processor:0.2.2")
4343
// etc. for your other targets
4444
}
4545
```
@@ -51,10 +51,10 @@ In a standard Android or JVM module, you can add the dependencies directly.
5151
```kotlin
5252
dependencies {
5353
// Annotation dependency
54-
implementation("io.github.jacksever.automapper:annotation:0.2.1")
54+
implementation("io.github.jacksever.automapper:annotation:0.2.2")
5555

5656
// KSP processor
57-
ksp("io.github.jacksever.automapper:processor:0.2.1")
57+
ksp("io.github.jacksever.automapper:processor:0.2.2")
5858
}
5959
```
6060

automapper/annotation/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group = "io.github.jacksever.automapper"
9-
version = "0.2.1"
9+
version = "0.2.2"
1010

1111
kotlin {
1212
jvm()

automapper/processor/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
group = "io.github.jacksever.automapper"
7-
version = "0.2.1"
7+
version = "0.2.2"
88

99
mavenPublishing {
1010
coordinates(

0 commit comments

Comments
 (0)