Skip to content

Commit

Permalink
Update Kotlin to 1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyant0 committed Jul 19, 2023
1 parent a3edf46 commit ee4db04
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ allprojects {
}
}

implementation("com.github.Kyant0:DataSaver:2023.7.1")
implementation("com.github.Kyant0:DataSaver:2023.7.2")
```

## Usage
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Top-level build file where you can add configuration options common to all subprojects/modules.
plugins {
id("com.android.library") version "7.4.1" apply false
kotlin("android") version "1.8.21" apply false
kotlin("plugin.serialization") version "1.8.21" apply false
kotlin("android") version "1.9.0" apply false
kotlin("plugin.serialization") version "1.9.0" apply false
}
6 changes: 3 additions & 3 deletions datasaver/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = "com.kyant.datasaver"
version = "2023.7.1"
version = "2023.7.2"

android {
namespace = "com.kyant.datasaver"
Expand Down Expand Up @@ -34,7 +34,7 @@ android {
compose = true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.4.7"
kotlinCompilerExtensionVersion = "1.5.0"
}
}

Expand All @@ -51,7 +51,7 @@ afterEvaluate {
register("mavenRelease", MavenPublication::class) {
groupId = "com.kyant"
artifactId = "datasaver"
version = "2023.7.1"
version = "2023.7.2"
from(components["release"])
}
}
Expand Down

0 comments on commit ee4db04

Please sign in to comment.