Skip to content

Commit 6d37ba0

Browse files
github-actions[bot]jacksever
authored andcommitted
Prepare release of Kotlin AutoMapper 0.5.0
1 parent be17ecc commit 6d37ba0

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.4.0")
33+
implementation("io.github.jacksever.automapper:annotation:0.5.0")
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.4.0")
41-
add("kspJvm", "io.github.jacksever.automapper:processor:0.4.0")
42-
add("kspIosX64", "io.github.jacksever.automapper:processor:0.4.0")
40+
add("kspJs", "io.github.jacksever.automapper:processor:0.5.0")
41+
add("kspJvm", "io.github.jacksever.automapper:processor:0.5.0")
42+
add("kspIosX64", "io.github.jacksever.automapper:processor:0.5.0")
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.4.0")
54+
implementation("io.github.jacksever.automapper:annotation:0.5.0")
5555

5656
// KSP processor
57-
ksp("io.github.jacksever.automapper:processor:0.4.0")
57+
ksp("io.github.jacksever.automapper:processor:0.5.0")
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.4.0"
9+
version = "0.5.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.4.0"
7+
version = "0.5.0"
88

99
mavenPublishing {
1010
coordinates(

0 commit comments

Comments
 (0)