Skip to content

Commit 2b82ba6

Browse files
authored
🔀 Merge pull request #518 from vinceglb/version-0.13
🔖 Version 0.13
2 parents eebdf47 + 2b7ef40 commit 2b82ba6

File tree

12 files changed

+22
-22
lines changed

12 files changed

+22
-22
lines changed

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ Tests are organized by platform with shared test resources in `nonWebTest/resour
5757

5858
- Uses explicit API mode (`explicitApi()`)
5959
- Supports Android (minSdk 21), iOS, macOS, JVM, JS, and WASM
60-
- Version managed in `gradle.properties` (VERSION_NAME=0.12.0)
60+
- Version managed in `gradle.properties` (VERSION_NAME=0.13.0)
6161
- Uses Gradle version catalogs in `gradle/libs.versions.toml`

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div align="center">
2-
<img src="https://github.com/user-attachments/assets/78fbdb24-6210-4d41-afeb-57d199a743f8" alt="FileKit for Kotlin Multiplatform and Compose Multiplatform" />
2+
<img src="https://github.com/user-attachments/assets/fa59bcd1-7906-4d14-9fa3-73845269b811" alt="FileKit for Kotlin Multiplatform and Compose Multiplatform" />
33

44
<br>
55

docs/images/hero-13.png

357 KB
Loading

docs/installation.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ FileKit Core provides the fundamental file operations with the `PlatformFile` ab
2020
<CodeGroup>
2121

2222
```kotlin build.gradle.kts
23-
implementation("io.github.vinceglb:filekit-core:0.12.0")
23+
implementation("io.github.vinceglb:filekit-core:0.13.0")
2424
```
2525

2626
```toml libs.versions.toml
2727
[versions]
28-
filekit = "0.12.0"
28+
filekit = "0.13.0"
2929

3030
[libraries]
3131
filekit-core = { module = "io.github.vinceglb:filekit-core", version.ref = "filekit" }
@@ -44,15 +44,15 @@ FileKit Dialogs helps you display file-related dialogs to users like file picker
4444

4545
```kotlin build.gradle.kts
4646
// Enables FileKit dialogs without Compose dependencies
47-
implementation("io.github.vinceglb:filekit-dialogs:0.12.0")
47+
implementation("io.github.vinceglb:filekit-dialogs:0.13.0")
4848

4949
// Enables FileKit dialogs with Composable utilities
50-
implementation("io.github.vinceglb:filekit-dialogs-compose:0.12.0")
50+
implementation("io.github.vinceglb:filekit-dialogs-compose:0.13.0")
5151
```
5252

5353
```toml libs.versions.toml
5454
[versions]
55-
filekit = "0.12.0"
55+
filekit = "0.13.0"
5656

5757
[libraries]
5858
filekit-dialogs = { module = "io.github.vinceglb:filekit-dialogs", version.ref = "filekit" }
@@ -70,12 +70,12 @@ FileKit provides a Coil extension to load images from a `PlatformFile` object. T
7070
<CodeGroup>
7171

7272
```kotlin build.gradle.kts
73-
implementation("io.github.vinceglb:filekit-coil:0.12.0")
73+
implementation("io.github.vinceglb:filekit-coil:0.13.0")
7474
```
7575

7676
```toml libs.versions.toml
7777
[versions]
78-
filekit = "0.12.0"
78+
filekit = "0.13.0"
7979

8080
[libraries]
8181
filekit-coil = { module = "io.github.vinceglb:filekit-coil", version.ref = "filekit" }

docs/introduction.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ og:title: FileKit
77

88
<Frame>
99
<img
10-
src="/images/hero-10.png"
10+
src="/images/hero-13.png"
1111
alt="FileKit Logo - File picker and utilities for Kotlin Multiplatform KMP, Compose Multiplatform CMP"
1212
/>
1313
</Frame>

docs/migrate-to-v0.10.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ FileKit v0.10 is a full rewrite of the library. It introduces a new API that is
1414
```kotlin {3, 7}
1515
// filekit-core renamed to filekit-dialogs
1616
implementation("io.github.vinceglb:filekit-core:0.8.8")
17-
implementation("io.github.vinceglb:filekit-dialogs:0.12.0")
17+
implementation("io.github.vinceglb:filekit-dialogs:0.13.0")
1818

1919
// filekit-compose renamed to filekit-dialogs-compose
2020
implementation("io.github.vinceglb:filekit-compose:0.8.8")
21-
implementation("io.github.vinceglb:filekit-dialogs-compose:0.12.0")
21+
implementation("io.github.vinceglb:filekit-dialogs-compose:0.13.0")
2222
```
2323

2424
<Info>

docs/snippets/filekit-version.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.12.0
1+
0.13.0

docs/snippets/version-coil.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<CodeGroup>
22

33
```kotlin build.gradle.kts
4-
implementation("io.github.vinceglb:filekit-coil:0.12.0")
4+
implementation("io.github.vinceglb:filekit-coil:0.13.0")
55
```
66

77
```toml libs.versions.toml
88
[versions]
9-
filekit = "0.12.0"
9+
filekit = "0.13.0"
1010

1111
[libraries]
1212
filekit-coil = { module = "io.github.vinceglb:filekit-coil", version.ref = "filekit" }

docs/snippets/version-core.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ You can use `PlatformFile` in your project by adding the following dependency:
55
<CodeGroup>
66

77
```kotlin build.gradle.kts
8-
implementation("io.github.vinceglb:filekit-core:0.12.0")
8+
implementation("io.github.vinceglb:filekit-core:0.13.0")
99
```
1010

1111
```toml libs.versions.toml
1212
[versions]
13-
filekit = "0.12.0"
13+
filekit = "0.13.0"
1414

1515
[libraries]
1616
filekit-core = { module = "io.github.vinceglb:filekit-core", version.ref = "filekit" }

docs/snippets/version-dialogs.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ FileKit can helps you to display dialogs to the user like file, directory and ph
44

55
```kotlin build.gradle.kts
66
// Enables FileKit dialogs without Compose dependencies
7-
implementation("io.github.vinceglb:filekit-dialogs:0.12.0")
7+
implementation("io.github.vinceglb:filekit-dialogs:0.13.0")
88

99
// Enables FileKit dialogs with Composable utilities
10-
implementation("io.github.vinceglb:filekit-dialogs-compose:0.12.0")
10+
implementation("io.github.vinceglb:filekit-dialogs-compose:0.13.0")
1111
```
1212

1313
```toml libs.versions.toml
1414
[versions]
15-
filekit = "0.12.0"
15+
filekit = "0.13.0"
1616

1717
[libraries]
1818
filekit-dialogs = { module = "io.github.vinceglb:filekit-dialogs", version.ref = "filekit" }

0 commit comments

Comments
 (0)