Skip to content

Commit

Permalink
Bump version to 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
alialbaali committed Aug 5, 2021
1 parent 49da5a5 commit 0e1c0aa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
[![Version](https://img.shields.io/maven-central/v/com.alialbaali.kamel/kamel-core?label=version&color=blue)](https://search.maven.org/search?q=com.alialbaali.kamel)
[![Snapshot](https://img.shields.io/nexus/s/com.alialbaali.kamel/kamel-core?label=snapshot&server=https%3A%2F%2Foss.sonatype.org)](https://oss.sonatype.org/content/repositories/snapshots/com/alialbaali/kamel/)
[![License](https://img.shields.io/github/license/alialbaali/kamel)](http://www.apache.org/licenses/LICENSE-2.0)
[![Kotlin](https://img.shields.io/badge/kotlin-v1.5.0-blue.svg?logo=kotlin)](http://kotlinlang.org)
[![Compose](https://img.shields.io/badge/compose-v0.4.0.build209-v?logo=compose&color=blue)](http://kotlinlang.org)
[![Kotlin](https://img.shields.io/badge/kotlin-v1.5.21-blue.svg?logo=kotlin)](http://kotlinlang.org)
[![Compose](https://img.shields.io/badge/compose-v1.0.0-alpha2-v?logo=compose&color=blue)](http://kotlinlang.org)

Kamel is an asynchronous media loading library for Compose. It provides a simple, customizable and efficient way to
load, cache, decode and display images in your application. By default, it uses Ktor client for loading resources.
Expand Down Expand Up @@ -48,7 +48,7 @@ kotlin {
sourceSets {
commonMain {
dependencies {
implementation("com.alialbaali.kamel:kamel-image:0.2.1")
implementation("com.alialbaali.kamel:kamel-image:0.2.2")
// ...
}
}
Expand All @@ -62,7 +62,7 @@ Add the dependency to the dependencies block:

```kotlin
dependencies {
implementation("com.alialbaali.kamel:kamel-image:0.2.1")
implementation("com.alialbaali.kamel:kamel-image:0.2.2")
// ...
}
```
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Kamel.kt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
object Kamel {
const val Group = "com.alialbaali.kamel"
const val Version = "0.2.1"
const val Version = "0.2.2"
}

0 comments on commit 0e1c0aa

Please sign in to comment.