Skip to content

Commit 68fc21a

Browse files
authored
Merge pull request #105 from MohamedRejeb/0.5.x
Update version to 0.5.1
2 parents d020560 + 1ad359b commit 68fc21a

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ You can try the web demo [here](https://calf-library.netlify.app/)
4040

4141
| Kotlin version | Compose version | Calf version |
4242
|----------------|-----------------|--------------|
43-
| 2.0.0 | 1.6.11 | 0.5.0 |
43+
| 2.0.0 | 1.6.11 | 0.5.1 |
4444
| 1.9.22 | 1.6.0 | 0.4.1 |
4545
| 1.9.21 | 1.5.11 | 0.3.1 |
4646
| 1.9.20 | 1.5.10 | 0.2.0 |

convention-plugins/src/main/kotlin/Publication.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ fun Project.rootPublicationSetup() {
1212

1313
allprojects {
1414
group = "com.mohamedrejeb.calf"
15-
version = "0.5.0"
15+
version = "0.5.1"
1616
}
1717

1818
nexusPublishing {

docs/filepicker.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Add the following dependency to your module `build.gradle.kts` file:
88

99
```kotlin
10-
implementation("com.mohamedrejeb.calf:calf-file-picker:0.5.0")
10+
implementation("com.mohamedrejeb.calf:calf-file-picker:0.5.1")
1111
```
1212

1313
## Usage

docs/installation.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
| Kotlin version | Compose version | Calf version |
66
|----------------|-----------------|--------------|
7-
| 1.9.22 | 1.6.0 | 0.5.0 |
7+
| 1.9.22 | 1.6.0 | 0.5.1 |
88
| 1.9.21 | 1.5.11 | 0.3.1 |
99
| 1.9.20 | 1.5.10 | 0.2.0 |
1010
| 1.9.0 | 1.5.0 | 0.1.1 |
@@ -13,16 +13,16 @@ Add the following dependencies to your module `build.gradle.kts` file:
1313

1414
```kotlin
1515
// For Adaptive UI components
16-
api("com.mohamedrejeb.calf:calf-ui:0.5.0")
16+
api("com.mohamedrejeb.calf:calf-ui:0.5.1")
1717

1818
// For WebView
19-
implementation("com.mohamedrejeb.calf:calf-webview:0.5.0")
19+
implementation("com.mohamedrejeb.calf:calf-webview:0.5.1")
2020

2121
// For FilePicker
22-
implementation("com.mohamedrejeb.calf:calf-file-picker:0.5.0")
22+
implementation("com.mohamedrejeb.calf:calf-file-picker:0.5.1")
2323

2424
// For Permissions
25-
implementation("com.mohamedrejeb.calf:calf-permissions:0.5.0")
25+
implementation("com.mohamedrejeb.calf:calf-permissions:0.5.1")
2626
```
2727

2828
If you are using `calf-ui` artifact, make sure to export it to binaries:
@@ -38,7 +38,7 @@ kotlin {
3838
.forEach {
3939
it.binaries.framework {
4040
...
41-
export("com.mohamedrejeb.calf:calf-ui:0.5.0")
41+
export("com.mohamedrejeb.calf:calf-ui:0.5.1")
4242
}
4343
}
4444
...
@@ -55,7 +55,7 @@ kotlin {
5555
...
5656
framework {
5757
...
58-
export("com.mohamedrejeb.calf:calf-ui:0.5.0")
58+
export("com.mohamedrejeb.calf:calf-ui:0.5.1")
5959
}
6060
}
6161
...

docs/permissions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Add the following dependency to your module `build.gradle.kts` file:
88

99
```kotlin
10-
implementation("com.mohamedrejeb.calf:calf-permissions:0.5.0")
10+
implementation("com.mohamedrejeb.calf:calf-permissions:0.5.1")
1111
```
1212

1313
## Usage

docs/ui.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
| Kotlin version | Compose version | Calf version |
88
|----------------|-----------------|--------------|
9-
| 2.0.0 | 1.6.11 | 0.5.0 |
9+
| 2.0.0 | 1.6.11 | 0.5.1 |
1010
| 1.9.22 | 1.6.0 | 0.4.1 |
1111
| 1.9.21 | 1.5.11 | 0.3.1 |
1212
| 1.9.20 | 1.5.10 | 0.2.0 |
@@ -15,7 +15,7 @@
1515
Add the following dependency to your module `build.gradle.kts` file:
1616

1717
```kotlin
18-
api("com.mohamedrejeb.calf:calf-ui:0.5.0")
18+
api("com.mohamedrejeb.calf:calf-ui:0.5.1")
1919
```
2020

2121
If you are using `calf-ui` artifact, make sure to export it to binaries:
@@ -31,7 +31,7 @@ kotlin {
3131
.forEach {
3232
it.binaries.framework {
3333
...
34-
export("com.mohamedrejeb.calf:calf-ui:0.5.0")
34+
export("com.mohamedrejeb.calf:calf-ui:0.5.1")
3535
}
3636
}
3737
...
@@ -48,7 +48,7 @@ kotlin {
4848
...
4949
framework {
5050
...
51-
export("com.mohamedrejeb.calf:calf-ui:0.5.0")
51+
export("com.mohamedrejeb.calf:calf-ui:0.5.1")
5252
}
5353
}
5454
...

docs/webview.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Add the following dependency to your module `build.gradle.kts` file:
88

99
```kotlin
10-
implementation("com.mohamedrejeb.calf:calf-webview:0.5.0")
10+
implementation("com.mohamedrejeb.calf:calf-webview:0.5.1")
1111
```
1212

1313
## Usage

0 commit comments

Comments
 (0)