Skip to content

Commit

Permalink
Merge pull request #42 from MohamedRejeb/0.3.x
Browse files Browse the repository at this point in the history
Update version to 0.3.0
  • Loading branch information
MohamedRejeb committed Dec 2, 2023
2 parents 577523b + 6c5a2a6 commit 1e8a3ef
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ Add the following dependency to your module `build.gradle.kts` file:

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

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

If you are using `calf-ui` artifact, make sure to export it to binaries:
Expand All @@ -55,7 +55,7 @@ kotlin {
.forEach {
it.binaries.framework {
...
export("com.mohamedrejeb.calf:calf-ui:0.2.0")
export("com.mohamedrejeb.calf:calf-ui:0.3.0")
}
}
...
Expand All @@ -72,7 +72,7 @@ kotlin {
...
framework {
...
export("com.mohamedrejeb.calf:calf-ui:0.2.0")
export("com.mohamedrejeb.calf:calf-ui:0.3.0")
}
}
...
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.2.0")
implementation("com.mohamedrejeb.calf:calf-file-picker:0.3.0")
```

## Usage
Expand Down
10 changes: 5 additions & 5 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ Add the following dependencies to your module `build.gradle.kts` file:

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

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

// For Permissions
implementation("com.mohamedrejeb.calf:calf-permissions:0.2.0")
implementation("com.mohamedrejeb.calf:calf-permissions:0.3.0")
```

If you are using `calf-ui` artifact, make sure to export it to binaries:
Expand All @@ -28,7 +28,7 @@ kotlin {
.forEach {
it.binaries.framework {
...
export("com.mohamedrejeb.calf:calf-ui:0.2.0")
export("com.mohamedrejeb.calf:calf-ui:0.3.0")
}
}
...
Expand All @@ -45,7 +45,7 @@ kotlin {
...
framework {
...
export("com.mohamedrejeb.calf:calf-ui:0.2.0")
export("com.mohamedrejeb.calf:calf-ui:0.3.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.2.0")
implementation("com.mohamedrejeb.calf:calf-permissions:0.3.0")
```

## Usage
Expand Down
6 changes: 3 additions & 3 deletions docs/ui.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
api("com.mohamedrejeb.calf:calf-ui:0.2.0")
api("com.mohamedrejeb.calf:calf-ui:0.3.0")
```

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

0 comments on commit 1e8a3ef

Please sign in to comment.