Skip to content

Commit 185d1a6

Browse files
Lib updates (#117)
1 parent d0b532d commit 185d1a6

File tree

5 files changed

+11
-12
lines changed

5 files changed

+11
-12
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: macos-13
1717
steps:
1818
- name: Checkout workspace
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020
timeout-minutes: 5
2121
with:
2222
fetch-depth: 0 # no shallow clones for SonarQube

.github/workflows/pages.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
chmod +x ./gradlew
4848
./gradlew dokkaHtml
4949
- name: Upload artifact
50-
uses: actions/upload-pages-artifact@v2
50+
uses: actions/upload-pages-artifact@v3
5151
with:
5252
path: 'build/dokka/html'
5353
- name: Deploy to GitHub Pages

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ of Ashampoo Photo Organizer, which, in turn, is driven by user community feedbac
3939
## Installation
4040

4141
```
42-
implementation("com.ashampoo:kim:0.22.2")
42+
implementation("com.ashampoo:kim:0.23")
4343
```
4444

4545
For the targets `wasmJs` & `js` you also need to specify this:

build.gradle.kts

+7-8
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
id("com.android.library") version "8.5.0"
99
id("maven-publish")
1010
id("signing")
11-
id("io.gitlab.arturbosch.detekt") version "1.23.7"
11+
id("io.gitlab.arturbosch.detekt") version "1.23.8"
1212
id("org.sonarqube") version "4.3.1.3277"
1313
id("org.jetbrains.kotlinx.kover") version "0.6.1"
1414
id("com.asarkar.gradle.build-time-tracker") version "4.3.0"
@@ -25,10 +25,10 @@ repositories {
2525

2626
val productName: String = "Ashampoo Kim"
2727

28-
val ktorVersion: String = "3.0.3"
28+
val ktorVersion: String = "3.1.1"
2929
val xmpCoreVersion: String = "1.5.1"
30-
val dateTimeVersion: String = "0.6.1"
31-
val kotlinxIoVersion: String = "0.6.0"
30+
val dateTimeVersion: String = "0.6.2"
31+
val kotlinxIoVersion: String = "0.7.0"
3232

3333
description = productName
3434
group = "com.ashampoo"
@@ -110,7 +110,7 @@ koverMerged {
110110
}
111111

112112
dependencies {
113-
detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.23.7")
113+
detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.23.8")
114114
}
115115

116116
kotlin {
@@ -173,9 +173,8 @@ kotlin {
173173
@OptIn(ExperimentalWasmDsl::class)
174174
wasmJs()
175175

176-
// WASI support is planned for kotlinx-datetime v0.7
177-
// @OptIn(ExperimentalWasmDsl::class)
178-
// wasmWasi()
176+
// @OptIn(ExperimentalWasmDsl::class)
177+
// wasmWasi()
179178

180179
@Suppress("UnusedPrivateMember") // False positive
181180
val commonMain by sourceSets.getting {
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
44
networkTimeout=10000
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)