Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
run: ./gradlew :koverXmlReport

- name: Upload Test Report
uses: codecov/codecov-action@v4.1.0
uses: codecov/codecov-action@v4.5.0
with:
fail_ci_if_error: true # optional (default = false)
token: ${{ secrets.CODECOV_TOKEN }} # required
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:

- name: Deploy docs 🚀 to website
if: ${{ contains(matrix.os, 'macos') }}
uses: JamesIves/[email protected].0
uses: JamesIves/[email protected].8
with:
branch: gh-pages # The branch the action should deploy to.
folder: site # The folder the action should deploy.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:

- name: Deploy docs 🚀 to website
if: ${{ contains(matrix.os, 'macos') }}
uses: JamesIves/[email protected].0
uses: JamesIves/[email protected].8
with:
branch: gh-pages # The branch the action should deploy to.
folder: site # The folder the action should deploy.
Expand Down
28 changes: 14 additions & 14 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[versions]
kotlin = "2.0.20"
coroutines = "1.9.0"
kotlinx-serialization-json = "1.7.1"
kotlinx-collections-immutable = "0.3.7"
kotlinx-serialization-json = "1.7.3"
kotlinx-collections-immutable = "0.3.8"

# the Java version that the Java and Kotlin compilers will target
java-target = "11"
Expand All @@ -16,7 +16,7 @@ android-target = "34"
# the Android compileSdkVersion to use
android-compile = "34"

android-gradle = "8.6.0"
android-gradle = "8.6.1"

# the Android target to use in sample
sample-android-target = "34"
Expand All @@ -25,31 +25,31 @@ sample-android-compile = "34"

jetbrains-compose = "1.6.11"

touchlab-stately = "2.0.7"
touchlab-stately = "2.1.0"
napier = "2.7.1"
flowExt = "1.0.0-RC"
koin-core = "4.0.0-RC1"
koin-compose = "4.0.0-RC1"
flowExt = "1.0.0"
koin-core = "4.0.0"
koin-compose = "4.0.0"
coil = "2.7.0"
compose-rules-detekt = "0.4.11"
compose-rules-detekt = "0.4.12"

androidx-lifecycle = "2.8.4"
androidx-lifecycle = "2.8.6"
androidx-annotation = "1.8.2"
androidx-activity = "1.9.1"
androidx-activity = "1.9.2"
androidx-compose-compiler = "1.5.11"
androidx-navigation = "2.7.7"
androidx-navigation = "2.8.1"
kmp-viewmodel = "0.8.0"
solivagant = "0.5.0"
timber = "5.0.1"

spotless = "6.25.0"
detekt = "1.23.6"
detekt = "1.23.7"

kotlinx-kover = "0.8.3"
dokka = "1.9.20"
kotlinx-binary-compatibility-validator = "0.16.3"

vanniktech-maven-publish = "0.28.0"
vanniktech-maven-publish = "0.29.0"
ktlint = "0.50.0"

[libraries]
Expand Down Expand Up @@ -79,7 +79,7 @@ androidx-lifecycle-runtime-compose = { module = "androidx.lifecycle:lifecycle-ru
androidx-lifecycle-viewmodel-compose = { module = "androidx.lifecycle:lifecycle-viewmodel-compose", version = "androidx-lifecycle" }
androidx-annotation = { module = "androidx.annotation:annotation", version.ref = "androidx-annotation" }
androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "androidx-activity" }
androidx-compose-bom = { module = "androidx.compose:compose-bom", version = "2024.05.00" }
androidx-compose-bom = { module = "androidx.compose:compose-bom", version = "2024.09.02" }
androidx-compose-ui-ui = { module = "androidx.compose.ui:ui" }
androidx-compose-ui-tooling = { module = "androidx.compose.ui:ui-tooling" }
androidx-compose-ui-tooling-preview = { module = "androidx.compose.ui:ui-tooling-preview" }
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 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading