Skip to content

Commit

Permalink
Update Kotlin to 2.0.20 and Gradle to 8.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Tweener committed Sep 27, 2024
1 parent 6b8bdfa commit d7fba62
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 12 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ nexusPublishing {
sonatype {
nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))
username.set(gradleLocalProperties(rootDir).getProperty("sonatype.username") ?: System.getenv("OSSRH_USERNAME"))
password.set(gradleLocalProperties(rootDir).getProperty("sonatype.password") ?: System.getenv("OSSRH_PASSWORD"))
stagingProfileId.set(gradleLocalProperties(rootDir).getProperty("sonatype.stagingProfileId") ?: System.getenv("OSSRH_STAGING_PROFILE_ID"))
username.set(gradleLocalProperties(rootDir, providers).getProperty("sonatype.username") ?: System.getenv("OSSRH_USERNAME"))
password.set(gradleLocalProperties(rootDir, providers).getProperty("sonatype.password") ?: System.getenv("OSSRH_PASSWORD"))
stagingProfileId.set(gradleLocalProperties(rootDir, providers).getProperty("sonatype.stagingProfileId") ?: System.getenv("OSSRH_STAGING_PROFILE_ID"))
}
}
}
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/ProjectConfiguration.kt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ object ProjectConfiguration {

object Czan {
const val packageName = "com.tweener.czan"
const val versionName = "2.3.3"
const val versionName = "2.3.4"
const val namespace = "$packageName.android"
const val compileSDK = 34
const val minSDK = 24
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ object CupertinoMenuContextDefaults {
)
}

@ConsistentCopyVisibility
@Immutable
data class CupertinoMenuItemColors internal constructor(
private val contentColor: Color,
Expand Down
14 changes: 7 additions & 7 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
[versions]
kotlin = "2.0.0"
gradle = "8.2.2"
kotlin = "2.0.20"
gradle = "8.5.2"
composeMultiplatform = "1.6.11"
dependencyVersionsPlugin = "0.51.0"
nexusSonatype = "2.0.0"
dokka = "1.9.20"
androidAnnotations = "1.8.0"
androidAnnotations = "1.8.2"
shimmer = "1.3.0"
cupertinoCompose = "0.1.0-alpha03"
ktor = "2.3.11"
ktor = "2.3.12"
coil = "3.0.0-alpha01"

# Tweener
tweenerBom = "2.0.1"

# Android
androidDesugarJdkLibs = "2.0.4"
androidActivityCompose = "1.9.0"
androidLifecycleCompose = "2.8.3"
androidDesugarJdkLibs = "2.1.2"
androidActivityCompose = "1.9.2"
androidLifecycleCompose = "2.8.6"
androidAccompanist = "0.34.0"

[libraries]
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 @@
#Tue Sep 26 18:05:06 CEST 2023
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit d7fba62

Please sign in to comment.