Skip to content

Commit 6b40eaf

Browse files
Prepare release of Kotlin AutoMapper 0.6.0
1 parent ef61b18 commit 6b40eaf

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
@@ -31,16 +31,16 @@ Ensure you have the `ksp` plugin applied in your module's `build.gradle.kts` fil
3131
sourceSets {
3232
commonMain.dependencies {
3333
// 1. Add the annotation dependency to commonMain
34-
implementation("io.github.jacksever.automapper:annotation:0.5.0")
34+
implementation("io.github.jacksever.automapper:annotation:0.6.0")
3535
}
3636
}
3737
}
3838

3939
// 2. Apply the processor to the targets you need
4040
dependencies {
41-
add("kspJs", "io.github.jacksever.automapper:processor:0.5.0")
42-
add("kspJvm", "io.github.jacksever.automapper:processor:0.5.0")
43-
add("kspIosX64", "io.github.jacksever.automapper:processor:0.5.0")
41+
add("kspJs", "io.github.jacksever.automapper:processor:0.6.0")
42+
add("kspJvm", "io.github.jacksever.automapper:processor:0.6.0")
43+
add("kspIosX64", "io.github.jacksever.automapper:processor:0.6.0")
4444
// etc. for your other targets
4545
}
4646
```
@@ -52,10 +52,10 @@ In a standard Android or JVM module, you can add the dependencies directly.
5252
```kotlin
5353
dependencies {
5454
// Annotation dependency
55-
implementation("io.github.jacksever.automapper:annotation:0.5.0")
55+
implementation("io.github.jacksever.automapper:annotation:0.6.0")
5656

5757
// KSP processor
58-
ksp("io.github.jacksever.automapper:processor:0.5.0")
58+
ksp("io.github.jacksever.automapper:processor:0.6.0")
5959
}
6060
```
6161

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.5.0"
9+
version = "0.6.0"
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.5.0"
7+
version = "0.6.0"
88

99
mavenPublishing {
1010
coordinates(

0 commit comments

Comments
 (0)