Skip to content

Commit f6c5edc

Browse files
committed
Prepare for the next release
1 parent a44b602 commit f6c5edc

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Add the KSP plugin below into your **module**'s `build.gradle` file:
4343

4444
```kotlin
4545
plugins {
46-
id("com.google.devtools.ksp") version "1.8.10-1.0.9"
46+
id("com.google.devtools.ksp") version "1.9.0-1.0.12"
4747
}
4848
```
4949
</details>
@@ -53,7 +53,7 @@ plugins {
5353

5454
```kotlin
5555
plugins {
56-
id("com.google.devtools.ksp") version "1.8.10-1.0.9"
56+
id("com.google.devtools.ksp") version "1.9.0-1.0.12"
5757
}
5858
```
5959
</details>
@@ -68,8 +68,8 @@ Add the dependency below into your **module**'s `build.gradle` file:
6868

6969
```gradle
7070
dependencies {
71-
implementation("com.github.skydoves:sealedx-core:1.0.1")
72-
ksp("com.github.skydoves:sealedx-processor:1.0.1")
71+
implementation("com.github.skydoves:sealedx-core:1.0.2")
72+
ksp("com.github.skydoves:sealedx-processor:1.0.2")
7373
}
7474
```
7575

buildSrc/src/main/kotlin/Configuration.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ object Configuration {
44
const val minSdk = 21
55
const val majorVersion = 1
66
const val minorVersion = 0
7-
const val patchVersion = 1
7+
const val patchVersion = 2
88
const val versionName = "$majorVersion.$minorVersion.$patchVersion"
9-
const val versionCode = 2
9+
const val versionCode = 3
1010
const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT"
1111
const val artifactGroup = "com.github.skydoves"
1212
}

0 commit comments

Comments
 (0)