Skip to content

Commit

Permalink
Prepare for the next release
Browse files Browse the repository at this point in the history
  • Loading branch information
skydoves committed Jul 30, 2023
1 parent a44b602 commit f6c5edc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Add the KSP plugin below into your **module**'s `build.gradle` file:

```kotlin
plugins {
id("com.google.devtools.ksp") version "1.8.10-1.0.9"
id("com.google.devtools.ksp") version "1.9.0-1.0.12"
}
```
</details>
Expand All @@ -53,7 +53,7 @@ plugins {

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

```gradle
dependencies {
implementation("com.github.skydoves:sealedx-core:1.0.1")
ksp("com.github.skydoves:sealedx-processor:1.0.1")
implementation("com.github.skydoves:sealedx-core:1.0.2")
ksp("com.github.skydoves:sealedx-processor:1.0.2")
}
```

Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/Configuration.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ object Configuration {
const val minSdk = 21
const val majorVersion = 1
const val minorVersion = 0
const val patchVersion = 1
const val patchVersion = 2
const val versionName = "$majorVersion.$minorVersion.$patchVersion"
const val versionCode = 2
const val versionCode = 3
const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT"
const val artifactGroup = "com.github.skydoves"
}

0 comments on commit f6c5edc

Please sign in to comment.