Skip to content

Commit

Permalink
Update version to 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MohamedRejeb committed Dec 29, 2024
1 parent 2ab8cbc commit 1174f5a
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 13 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ You can try the web demo [here](https://calf-library.netlify.app/)

| Kotlin version | Compose version | Calf version |
|----------------|-----------------|--------------|
| 2.1.0 | 1.7.3 | 0.7.0 |
| 2.0.21 | 1.7.0 | 0.6.1 |
| 2.0.10 | 1.6.11 | 0.5.5 |
| 1.9.22 | 1.6.0 | 0.4.1 |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {

allprojects {
group = "com.mohamedrejeb.calf"
version = System.getenv("VERSION") ?: "0.6.1"
version = System.getenv("VERSION") ?: "0.7.0"
}

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.6.1")
implementation("com.mohamedrejeb.calf:calf-file-picker:0.7.0")
```

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

| Kotlin version | Compose version | Calf version |
|----------------|-----------------|--------------|
| 2.1.0 | 1.7.3 | 0.7.0 |
| 2.0.21 | 1.7.0 | 0.6.1 |
| 2.0.10 | 1.6.11 | 0.5.5 |
| 1.9.22 | 1.6.0 | 0.4.1 |
Expand All @@ -15,16 +16,16 @@ Add the following dependencies to your module `build.gradle.kts` file:

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

// For WebView
implementation("com.mohamedrejeb.calf:calf-webview:0.6.1")
implementation("com.mohamedrejeb.calf:calf-webview:0.7.0")

// For FilePicker
implementation("com.mohamedrejeb.calf:calf-file-picker:0.6.1")
implementation("com.mohamedrejeb.calf:calf-file-picker:0.7.0")

// For Permissions
implementation("com.mohamedrejeb.calf:calf-permissions:0.6.1")
implementation("com.mohamedrejeb.calf:calf-permissions:0.7.0")
```

If you are using `calf-ui` artifact, make sure to export it to binaries:
Expand All @@ -40,7 +41,7 @@ kotlin {
.forEach {
it.binaries.framework {
...
export("com.mohamedrejeb.calf:calf-ui:0.6.1")
export("com.mohamedrejeb.calf:calf-ui:0.7.0")
}
}
...
Expand All @@ -57,7 +58,7 @@ kotlin {
...
framework {
...
export("com.mohamedrejeb.calf:calf-ui:0.6.1")
export("com.mohamedrejeb.calf:calf-ui:0.7.0")
}
}
...
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.6.1")
implementation("com.mohamedrejeb.calf:calf-permissions:0.7.0")
```

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

| Kotlin version | Compose version | Calf version |
|----------------|-----------------|--------------|
| 2.1.0 | 1.7.3 | 0.7.0 |
| 2.0.21 | 1.7.0 | 0.6.1 |
| 2.0.10 | 1.6.11 | 0.5.5 |
| 1.9.22 | 1.6.0 | 0.4.1 |
Expand All @@ -16,7 +17,7 @@
Add the following dependency to your module `build.gradle.kts` file:

```kotlin
api("com.mohamedrejeb.calf:calf-ui:0.6.1")
api("com.mohamedrejeb.calf:calf-ui:0.7.0")
```

If you are using `calf-ui` artifact, make sure to export it to binaries:
Expand All @@ -32,7 +33,7 @@ kotlin {
.forEach {
it.binaries.framework {
...
export("com.mohamedrejeb.calf:calf-ui:0.6.1")
export("com.mohamedrejeb.calf:calf-ui:0.7.0")
}
}
...
Expand All @@ -49,7 +50,7 @@ kotlin {
...
framework {
...
export("com.mohamedrejeb.calf:calf-ui:0.6.1")
export("com.mohamedrejeb.calf:calf-ui:0.7.0")
}
}
...
Expand Down
2 changes: 1 addition & 1 deletion docs/webview.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-webview:0.6.1")
implementation("com.mohamedrejeb.calf:calf-webview:0.7.0")
```

## Usage
Expand Down

0 comments on commit 1174f5a

Please sign in to comment.