Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyant0 committed Nov 22, 2023
1 parent 99b4f4e commit 49a31e6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
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.8.1")
implementation("com.github.Kyant0:DataSaver:2023.11.1")
```

## Usage
Expand Down
6 changes: 3 additions & 3 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 "8.0.0" apply false
kotlin("android") version "1.9.0" apply false
kotlin("plugin.serialization") version "1.9.0" apply false
id("com.android.library") version "8.1.2" apply false
kotlin("android") version "1.9.20" apply false
kotlin("plugin.serialization") version "1.9.20" apply false
}
12 changes: 6 additions & 6 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.8.1"
version = "2023.11.1"

android {
namespace = "com.kyant.datasaver"
Expand Down Expand Up @@ -35,15 +35,15 @@ android {
compose = true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.5.1"
kotlinCompilerExtensionVersion = "1.5.4"
}
}

dependencies {
implementation("androidx.compose.runtime:runtime:1.6.0-alpha03")
implementation("androidx.compose.runtime:runtime:1.5.4")

implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.2")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-protobuf:1.5.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-protobuf:1.6.1")
}

afterEvaluate {
Expand All @@ -52,7 +52,7 @@ afterEvaluate {
register("mavenRelease", MavenPublication::class) {
groupId = "com.kyant"
artifactId = "datasaver"
version = "2023.8.1"
version = "2023.11.1"
from(components["release"])
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sun May 07 14:08:11 CST 2023
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 49a31e6

Please sign in to comment.