Skip to content

Commit

Permalink
Merge pull request #120 from MohamedRejeb/0.5.x
Browse files Browse the repository at this point in the history
Update version to 0.5.2
  • Loading branch information
MohamedRejeb authored Jul 24, 2024
2 parents 04d6d29 + 59086cd commit ce30ffc
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ You can try the web demo [here](https://calf-library.netlify.app/)

| Kotlin version | Compose version | Calf version |
|----------------|-----------------|--------------|
| 2.0.0 | 1.6.11 | 0.5.1 |
| 2.0.0 | 1.6.11 | 0.5.2 |
| 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 |
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 = System.getenv("VERSION") ?: "0.5.1"
version = System.getenv("VERSION") ?: "0.5.2"
}

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

## Usage
Expand Down
14 changes: 7 additions & 7 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.5.1 |
| 1.9.22 | 1.6.0 | 0.5.2 |
| 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,16 +13,16 @@ Add the following dependencies to your module `build.gradle.kts` file:

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

// For WebView
implementation("com.mohamedrejeb.calf:calf-webview:0.5.1")
implementation("com.mohamedrejeb.calf:calf-webview:0.5.2")

// For FilePicker
implementation("com.mohamedrejeb.calf:calf-file-picker:0.5.1")
implementation("com.mohamedrejeb.calf:calf-file-picker:0.5.2")

// For Permissions
implementation("com.mohamedrejeb.calf:calf-permissions:0.5.1")
implementation("com.mohamedrejeb.calf:calf-permissions:0.5.2")
```

If you are using `calf-ui` artifact, make sure to export it to binaries:
Expand All @@ -38,7 +38,7 @@ kotlin {
.forEach {
it.binaries.framework {
...
export("com.mohamedrejeb.calf:calf-ui:0.5.1")
export("com.mohamedrejeb.calf:calf-ui:0.5.2")
}
}
...
Expand All @@ -55,7 +55,7 @@ kotlin {
...
framework {
...
export("com.mohamedrejeb.calf:calf-ui:0.5.1")
export("com.mohamedrejeb.calf:calf-ui:0.5.2")
}
}
...
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.5.1")
implementation("com.mohamedrejeb.calf:calf-permissions:0.5.2")
```

## 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,7 +6,7 @@

| Kotlin version | Compose version | Calf version |
|----------------|-----------------|--------------|
| 2.0.0 | 1.6.11 | 0.5.1 |
| 2.0.0 | 1.6.11 | 0.5.2 |
| 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 |
Expand All @@ -15,7 +15,7 @@
Add the following dependency to your module `build.gradle.kts` file:

```kotlin
api("com.mohamedrejeb.calf:calf-ui:0.5.1")
api("com.mohamedrejeb.calf:calf-ui:0.5.2")
```

If you are using `calf-ui` artifact, make sure to export it to binaries:
Expand All @@ -31,7 +31,7 @@ kotlin {
.forEach {
it.binaries.framework {
...
export("com.mohamedrejeb.calf:calf-ui:0.5.1")
export("com.mohamedrejeb.calf:calf-ui:0.5.2")
}
}
...
Expand All @@ -48,7 +48,7 @@ kotlin {
...
framework {
...
export("com.mohamedrejeb.calf:calf-ui:0.5.1")
export("com.mohamedrejeb.calf:calf-ui:0.5.2")
}
}
...
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.5.1")
implementation("com.mohamedrejeb.calf:calf-webview:0.5.2")
```

## Usage
Expand Down

0 comments on commit ce30ffc

Please sign in to comment.