Skip to content

Commit c83bef3

Browse files
Prepare release of Kotlin AutoMapper 0.7.0
1 parent 28ea85f commit c83bef3

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

4242
// 2. Apply the processor to the targets you need
4343
dependencies {
44-
add("kspJs", "io.github.jacksever.automapper:processor:0.6.0")
45-
add("kspJvm", "io.github.jacksever.automapper:processor:0.6.0")
46-
add("kspIosX64", "io.github.jacksever.automapper:processor:0.6.0")
44+
add("kspJs", "io.github.jacksever.automapper:processor:0.7.0")
45+
add("kspJvm", "io.github.jacksever.automapper:processor:0.7.0")
46+
add("kspIosX64", "io.github.jacksever.automapper:processor:0.7.0")
4747
// etc. for your other targets
4848
}
4949
```
@@ -55,10 +55,10 @@ In a standard Android or JVM module, you can add the dependencies directly.
5555
```kotlin
5656
dependencies {
5757
// Annotation dependency
58-
implementation("io.github.jacksever.automapper:annotation:0.6.0")
58+
implementation("io.github.jacksever.automapper:annotation:0.7.0")
5959

6060
// KSP processor
61-
ksp("io.github.jacksever.automapper:processor:0.6.0")
61+
ksp("io.github.jacksever.automapper:processor:0.7.0")
6262
}
6363
```
6464

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.6.0"
9+
version = "0.7.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.6.0"
7+
version = "0.7.0"
88

99
mavenPublishing {
1010
coordinates(

0 commit comments

Comments
 (0)