Skip to content

Commit

Permalink
Update versions: Kotlin 2.1.0 + Gradle 8.11.1 + CMP 1.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Tweener committed Jan 12, 2025
1 parent ee392ed commit d3aec14
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 14 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![Kotlin](https://img.shields.io/badge/kotlin-2.0.21-blue.svg?logo=kotlin)](http://kotlinlang.org)
[![Compose](https://img.shields.io/badge/compose-1.7.1-blue.svg?logo=jetpackcompose)](https://www.jetbrains.com/lp/compose-multiplatform)
![gradle-version](https://img.shields.io/badge/gradle-8.5.2-blue?logo=gradle)
[![Kotlin](https://img.shields.io/badge/kotlin-2.1.0-blue.svg?logo=kotlin)](http://kotlinlang.org)
[![Compose](https://img.shields.io/badge/compose-1.7.3-blue.svg?logo=jetpackcompose)](https://www.jetbrains.com/lp/compose-multiplatform)
![gradle-version](https://img.shields.io/badge/gradle-8.11.1-blue?logo=gradle)
[![License](https://img.shields.io/badge/License-Apache%202.0-green.svg)](https://opensource.org/licenses/Apache-2.0)

[![Website](https://img.shields.io/badge/Author-vivienmahe.com-purple)](https://vivienmahe.com/)
Expand Down
3 changes: 2 additions & 1 deletion changehere/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import org.jetbrains.dokka.gradle.DokkaTask
import org.jetbrains.kotlin.gradle.ExperimentalKotlinGradlePluginApi
import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import java.net.URI
import java.net.URL

plugins {
Expand Down Expand Up @@ -125,7 +126,7 @@ tasks.withType<DokkaTask>().configureEach {

sourceLink {
localDirectory.set(rootProject.projectDir)
remoteUrl.set(URL(ProjectConfiguration.MyProject.Maven.packageUrl + "/tree/main"))
remoteUrl.set(URI(ProjectConfiguration.MyProject.Maven.packageUrl + "/tree/main").toURL())
remoteLineSuffix.set("#L")
}
}
Expand Down
14 changes: 5 additions & 9 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
[versions]
kotlin = "2.0.21"
gradle = "8.5.2"
kotlin = "2.1.0"
gradle = "8.7.3"
dependencyVersionsPlugin = "0.51.0"
nexusSonatype = "2.0.0"
dokka = "1.9.20"
androidAnnotations = "1.9.1"
coroutines = "1.9.0"
napier = "2.7.1"
composeMultiplatform = "1.7.1"

# Tweener
tweenerKmpKit = "0.1.1"
composeMultiplatform = "1.7.3"
kmpKit = "1.0.1"

# Android
androidCore = "1.15.0"
Expand All @@ -19,9 +17,7 @@ androidActivity = "1.9.3"
[libraries]
napier = { group = "io.github.aakira", name = "napier", version.ref = "napier" }
compose-multiplatform-material3 = { group = "org.jetbrains.compose.material3", name = "material3", version.ref = "composeMultiplatform" }

# Tweener
tweener-kmpkit = { group = "io.github.tweener", name = "kmpkit", version.ref = "tweenerKmpKit" }
tweener-kmpkit = { group = "io.github.tweener", name = "kmpkit", version.ref = "kmpKit" }

# Coroutines
kotlin-coroutines-core = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-core", version.ref = "coroutines" }
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 @@
#Wed Feb 07 09:33:11 CET 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit d3aec14

Please sign in to comment.