Skip to content

Commit 2386167

Browse files
committed
🔖 Version 0.10.0-beta02
1 parent 8d5fbb0 commit 2386167

6 files changed

+16
-16
lines changed

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.10.0-beta01")
23+
implementation("io.github.vinceglb:filekit-core:0.10.0-beta02")
2424
```
2525

2626
```toml libs.versions.toml
2727
[versions]
28-
filekit = "0.10.0-beta01"
28+
filekit = "0.10.0-beta02"
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.10.0-beta01")
47+
implementation("io.github.vinceglb:filekit-dialogs:0.10.0-beta02")
4848

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

5353
```toml libs.versions.toml
5454
[versions]
55-
filekit = "0.10.0-beta01"
55+
filekit = "0.10.0-beta02"
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.10.0-beta01")
73+
implementation("io.github.vinceglb:filekit-coil:0.10.0-beta02")
7474
```
7575

7676
```toml libs.versions.toml
7777
[versions]
78-
filekit = "0.10.0-beta01"
78+
filekit = "0.10.0-beta02"
7979

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

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.10.0-beta01")
17+
implementation("io.github.vinceglb:filekit-dialogs:0.10.0-beta02")
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.10.0-beta01")
21+
implementation("io.github.vinceglb:filekit-dialogs-compose:0.10.0-beta02")
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.10.0-beta01
1+
0.10.0-beta02

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.10.0-beta01")
8+
implementation("io.github.vinceglb:filekit-core:0.10.0-beta02")
99
```
1010

1111
```toml libs.versions.toml
1212
[versions]
13-
filekit = "0.10.0-beta01"
13+
filekit = "0.10.0-beta02"
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.10.0-beta01")
7+
implementation("io.github.vinceglb:filekit-dialogs:0.10.0-beta02")
88

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

1313
```toml libs.versions.toml
1414
[versions]
15-
filekit = "0.10.0-beta01"
15+
filekit = "0.10.0-beta02"
1616

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

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RELEASE_SIGNING_ENABLED=true
1818

1919
# Lib
2020
GROUP=io.github.vinceglb
21-
VERSION_NAME=0.10.0-beta01
21+
VERSION_NAME=0.10.0-beta02
2222

2323
POM_NAME=FileKit
2424
POM_DESCRIPTION=Files, Media, Folder Picker and File saver library for Kotlin Multiplatform and Compose Multiplatform

0 commit comments

Comments
 (0)