Skip to content

Commit

Permalink
Bump dependencies (#13)
Browse files Browse the repository at this point in the history
The compose multiplatform version needed to be bumped to be compatible with projects using kotlin 2.0.0 and related compose versions. Bump other dependencies at the same time.
  • Loading branch information
tom-pratt committed Jun 4, 2024
1 parent e0c4278 commit a005684
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,6 @@ google-services.json

# Android Profiling
*.hprof

# Kotlin cache folder used by kotlin 2.0.0
.kotlin
3 changes: 2 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@ plugins {
alias(libs.plugins.android.application) apply false
alias(libs.plugins.android.library) apply false
alias(libs.plugins.compose) apply false
alias(libs.plugins.compose.compiler) apply false
alias(libs.plugins.kotlin.android) apply false
alias(libs.plugins.kotlin.multiplatform) apply false
}

allprojects {
group = "dev.materii.pullrefresh"
version = "1.4.0-beta02"
version = "1.4.0-beta03"

repositories {
repositories {
Expand Down
15 changes: 8 additions & 7 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
[versions]
agp = "8.2.2"
kotlin = "1.9.22"
compose-multiplatform = "1.6.0-beta02"
kotlin = "2.0.0"
compose-multiplatform = "1.6.11"
compose-compiler = "1.5.8"
core-ktx = "1.12.0"
core-ktx = "1.13.1"

[libraries]
core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "core-ktx" }
lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version = "2.7.0" }
activity-compose = { group = "androidx.activity", name = "activity-compose", version = "1.8.2" }
material3 = { group = "androidx.compose.material3", name = "material3", version = "1.2.0-rc01" }
material-icons-extended = { group = "androidx.compose.material", name = "material-icons-extended", version = "1.6.0" }
lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version = "2.8.1" }
activity-compose = { group = "androidx.activity", name = "activity-compose", version = "1.9.0" }
material3 = { group = "androidx.compose.material3", name = "material3", version = "1.2.1" }
material-icons-extended = { group = "androidx.compose.material", name = "material-icons-extended", version = "1.6.7" }

[plugins]
android-application = { id = "com.android.application", version.ref = "agp" }
android-library = { id = "com.android.library", version.ref = "agp" }
compose = { id = "org.jetbrains.compose", version.ref = "compose-multiplatform" }
compose-compiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
kotlin-multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }

1 change: 1 addition & 0 deletions pullrefresh/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
plugins {
alias(libs.plugins.android.library)
alias(libs.plugins.compose)
alias(libs.plugins.compose.compiler)
alias(libs.plugins.kotlin.multiplatform)
id("maven-publish")
id("signing")
Expand Down

0 comments on commit a005684

Please sign in to comment.