Skip to content

Commit

Permalink
Update version to 0.4.1 (#87)
Browse files Browse the repository at this point in the history
* Create iOS temp file in file picker

* Create iOS temp file in documents file picker

* Update version to 0.4.1
  • Loading branch information
MohamedRejeb committed May 29, 2024
1 parent fbae861 commit 1fcb877
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 21 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ You can try the web demo [here](https://calf-library.netlify.app/)

| Kotlin version | Compose version | Calf version |
|----------------|-----------------|--------------|
| 1.9.22 | 1.6.0 | 0.4.0 |
| 1.9.22 | 1.6.0 | 0.4.1 |
| 1.9.21 | 1.5.11 | 0.3.1 |
| 1.9.20 | 1.5.10 | 0.2.0 |
| 1.9.0 | 1.5.0 | 0.1.1 |
Expand All @@ -48,10 +48,10 @@ Add the following dependency to your module `build.gradle.kts` file:

```kotlin
// For Adaptive UI components
api("com.mohamedrejeb.calf:calf-ui:0.4.0")
api("com.mohamedrejeb.calf:calf-ui:0.4.1")

// For Adaptive FilePicker
implementation("com.mohamedrejeb.calf:calf-file-picker:0.4.0")
implementation("com.mohamedrejeb.calf:calf-file-picker:0.4.1")
```

If you are using `calf-ui` artifact, make sure to export it to binaries:
Expand All @@ -67,7 +67,7 @@ kotlin {
.forEach {
it.binaries.framework {
...
export("com.mohamedrejeb.calf:calf-ui:0.4.0")
export("com.mohamedrejeb.calf:calf-ui:0.4.1")
}
}
...
Expand All @@ -84,7 +84,7 @@ kotlin {
...
framework {
...
export("com.mohamedrejeb.calf:calf-ui:0.4.0")
export("com.mohamedrejeb.calf:calf-ui:0.4.1")
}
}
...
Expand Down
4 changes: 1 addition & 3 deletions calf-file-picker-coil/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,10 @@ plugins {
alias(libs.plugins.androidLibrary)
}

kotlinMultiplatformSetup()
modulePublicationSetup()
androidLibrarySetup()

kotlin {
applyHierarchyTemplate()
applyTargets()
sourceSets.commonMain.dependencies {
api(projects.calfCore)
api(projects.calfIo)
Expand Down
2 changes: 1 addition & 1 deletion convention-plugins/src/main/kotlin/Publication.kt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ fun Project.rootPublicationSetup() {

allprojects {
group = "com.mohamedrejeb.calf"
version = "0.4.0"
version = "0.4.1"
}

nexusPublishing {
Expand Down
2 changes: 1 addition & 1 deletion docs/filepicker.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Add the following dependency to your module `build.gradle.kts` file:

```kotlin
implementation("com.mohamedrejeb.calf:calf-file-picker:0.4.0")
implementation("com.mohamedrejeb.calf:calf-file-picker:0.4.1")
```

## Usage
Expand Down
12 changes: 6 additions & 6 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

| Kotlin version | Compose version | Calf version |
|----------------|-----------------|--------------|
| 1.9.22 | 1.6.0 | 0.4.0 |
| 1.9.22 | 1.6.0 | 0.4.1 |
| 1.9.21 | 1.5.11 | 0.3.1 |
| 1.9.20 | 1.5.10 | 0.2.0 |
| 1.9.0 | 1.5.0 | 0.1.1 |
Expand All @@ -13,13 +13,13 @@ Add the following dependencies to your module `build.gradle.kts` file:

```kotlin
// For Adaptive UI components
api("com.mohamedrejeb.calf:calf-ui:0.4.0")
api("com.mohamedrejeb.calf:calf-ui:0.4.1")

// For Adaptive FilePicker
implementation("com.mohamedrejeb.calf:calf-file-picker:0.4.0")
implementation("com.mohamedrejeb.calf:calf-file-picker:0.4.1")

// For Permissions
implementation("com.mohamedrejeb.calf:calf-permissions:0.4.0")
implementation("com.mohamedrejeb.calf:calf-permissions:0.4.1")
```

If you are using `calf-ui` artifact, make sure to export it to binaries:
Expand All @@ -35,7 +35,7 @@ kotlin {
.forEach {
it.binaries.framework {
...
export("com.mohamedrejeb.calf:calf-ui:0.4.0")
export("com.mohamedrejeb.calf:calf-ui:0.4.1")
}
}
...
Expand All @@ -52,7 +52,7 @@ kotlin {
...
framework {
...
export("com.mohamedrejeb.calf:calf-ui:0.4.0")
export("com.mohamedrejeb.calf:calf-ui:0.4.1")
}
}
...
Expand Down
2 changes: 1 addition & 1 deletion docs/permissions.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Add the following dependency to your module `build.gradle.kts` file:

```kotlin
implementation("com.mohamedrejeb.calf:calf-permissions:0.4.0")
implementation("com.mohamedrejeb.calf:calf-permissions:0.4.1")
```

## Usage
Expand Down
8 changes: 4 additions & 4 deletions docs/ui.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@

| Kotlin version | Compose version | Calf version |
|----------------|-----------------|--------------|
| 1.9.22 | 1.6.0 | 0.4.0 |
| 1.9.22 | 1.6.0 | 0.4.1 |
| 1.9.21 | 1.5.11 | 0.3.1 |
| 1.9.20 | 1.5.10 | 0.2.0 |
| 1.9.0 | 1.5.0 | 0.1.1 |

Add the following dependency to your module `build.gradle.kts` file:

```kotlin
api("com.mohamedrejeb.calf:calf-ui:0.4.0")
api("com.mohamedrejeb.calf:calf-ui:0.4.1")
```

If you are using `calf-ui` artifact, make sure to export it to binaries:
Expand All @@ -30,7 +30,7 @@ kotlin {
.forEach {
it.binaries.framework {
...
export("com.mohamedrejeb.calf:calf-ui:0.4.0")
export("com.mohamedrejeb.calf:calf-ui:0.4.1")
}
}
...
Expand All @@ -47,7 +47,7 @@ kotlin {
...
framework {
...
export("com.mohamedrejeb.calf:calf-ui:0.4.0")
export("com.mohamedrejeb.calf:calf-ui:0.4.1")
}
}
...
Expand Down

0 comments on commit 1fcb877

Please sign in to comment.