Skip to content

Commit 0367835

Browse files
authored
Merge pull request #22 from pseudoankit/bump-version
Bump version
2 parents c3b0564 + 959ee1d commit 0367835

File tree

2 files changed

+14
-15
lines changed

2 files changed

+14
-15
lines changed

buildSrc/src/main/java/plugin/base/CorePlugin.kt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ open class CorePlugin : Plugin<Project> {
3939
compileOptions {
4040
sourceCompatibility = JavaVersion.VERSION_11
4141
targetCompatibility = JavaVersion.VERSION_11
42-
isCoreLibraryDesugaringEnabled = true
42+
// isCoreLibraryDesugaringEnabled = true
4343
}
4444

4545
composeOptions {
@@ -79,13 +79,14 @@ open class CorePlugin : Plugin<Project> {
7979
}
8080

8181
project.dependencies {
82+
implementation(platform("io.insert-koin:koin-bom:3.5.3"))
8283
implementation(project.libs.koin.core)
8384
implementation(project.libs.koin.android)
8485
implementation(project.libs.kotlin.collections.immutable)
8586
implementation(project.libs.kotlin.serialization.json)
8687
implementation(platform(project.libs.compose.bom))
8788
implementation(project.libs.compose.runtime)
88-
add("coreLibraryDesugaring", "com.android.tools:desugar_jdk_libs:1.1.5")
89+
// add("coreLibraryDesugaring", "com.android.tools:desugar_jdk_libs:1.1.5")
8990
}
9091
}
9192
}

gradle/libs.versions.toml

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
[versions]
2-
kotlin = "1.8.10"
3-
kotlin-coroutines = "1.6.4"
2+
kotlin = "1.9.22"
3+
kotlin-coroutines = "1.7.3"
44
ktor = "2.3.5"
5-
kotest = "5.7.2"
65
# https://developer.android.com/jetpack/androidx/releases/compose-kotlin
7-
compose-compiler = "1.4.3" # It's used! Use compatible with Kotlin one
6+
compose-compiler = "1.5.8" # It's used! Use compatible with Kotlin one
87
glance = "1.0.0-alpha05"
9-
room = "2.4.2"
8+
room = "2.6.1"
109
detekt = "1.23.1" # https://detekt.dev/docs/gettingstarted/gradle/
11-
composeDestinations = "1.8.36-beta"
10+
composeDestinations = "1.9.57"
1211

1312
# Android
1413
minSdk = "23"
@@ -36,7 +35,7 @@ kotlin-coroutines-googleplay-temp = { module = "org.jetbrains.kotlinx:kotlinx-co
3635
kotlin-collections-immutable = { module = "org.jetbrains.kotlinx:kotlinx-collections-immutable", version = "0.3.5" }
3736
kotlin-serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version = "1.4.1" }
3837
kotlin-serialization-plugin = { module = "org.jetbrains.kotlin:kotlin-serialization", version.ref = "kotlin" }
39-
ksp-gradle-plugin = { module = "com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin", version = "1.8.10-1.0.9" }
38+
ksp-gradle-plugin = { module = "com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin", version = "1.9.22-1.0.16" }
4039

4140
# Ktor
4241
ktor-client-okhttp = { module = "io.ktor:ktor-client-okhttp", version.ref = "ktor" }
@@ -79,17 +78,17 @@ compose-placeholder = { module = "com.google.accompanist:accompanist-placeholder
7978
compose-orbit-mvi = { module = "org.orbit-mvi:orbit-compose", version = "4.5.0" }
8079

8180
# Koin
82-
koin-core = { module = "io.insert-koin:koin-core", version = "3.2.2" }
83-
koin-android = { module = "io.insert-koin:koin-android", version = "3.2.2" }
84-
koin-compose = { module = "io.insert-koin:koin-androidx-compose", version = "3.2.1" }
81+
koin-core = { module = "io.insert-koin:koin-core" }
82+
koin-android = { module = "io.insert-koin:koin-android" }
83+
koin-compose = { module = "io.insert-koin:koin-androidx-compose" }
8584

8685
# Glance
8786
glance = { module = "androidx.glance:glance", version.ref = "glance" }
8887
glance-appwidget = { module = "androidx.glance:glance-appwidget", version.ref = "glance" }
8988
glance-material3 = { module = "androidx.glance:glance-material3", version.ref = "glance" }
9089

9190
# Local persistence
92-
datastore = { module = "androidx.datastore:datastore-preferences", version = "1.1.0-alpha01" }
91+
datastore = { module = "androidx.datastore:datastore-preferences", version = "1.1.0-beta02" }
9392
room-runtime = { module = "androidx.room:room-runtime", version.ref = "room" }
9493
room-compiler = { module = "androidx.room:room-compiler", version.ref = "room" }
9594
room-ktx = { module = "androidx.room:room-ktx", version.ref = "room" }
@@ -99,7 +98,7 @@ detekt-gradle-plugin = { module = "io.gitlab.arturbosch.detekt:detekt-gradle-plu
9998
detekt-ruleset-compiler = { module = "com.braisgabin.detekt:kotlin-compiler-wrapper", version = "0.0.4" }
10099
detekt-ruleset-ktlint = { module = "io.gitlab.arturbosch.detekt:detekt-formatting", version.ref = "detekt" }
101100
detekt-ruleset-compose = { module = "io.nlopez.compose.rules:detekt", version = "0.3.0" }
102-
slack-lint-compose = { module = "com.slack.lint.compose:compose-lint-checks", version = "1.2.0" }
101+
slack-lint-compose = { module = "com.slack.lint.compose:compose-lint-checks", version = "1.3.1" }
103102
sonarQube-gradle-plugin = { module = "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin", version = "2.7.1" }
104103

105104
# Dev Tools
@@ -154,5 +153,4 @@ glance = [
154153
]
155154

156155
[plugins]
157-
gradleWrapperUpgrade = { id = "org.gradle.wrapper-upgrade", version = "0.11.4" }
158156
deteKt = { id = "io.gitlab.arturbosch.detekt" }

0 commit comments

Comments
 (0)