Skip to content

Commit

Permalink
Bump version to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alialbaali committed Mar 4, 2021
1 parent 875c871 commit 237a526
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 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.4.30-blue.svg?logo=kotlin)](http://kotlinlang.org)
[![Compose](https://img.shields.io/badge/compose-v0.3.0.build154-v?logo=compose&color=blue)](http://kotlinlang.org)
[![Kotlin](https://img.shields.io/badge/kotlin-v1.4.31-blue.svg?logo=kotlin)](http://kotlinlang.org)
[![Compose](https://img.shields.io/badge/compose-v0.3.2-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 All @@ -17,8 +17,8 @@ load, cache, decode and display images in your application. By default, it uses
- [Usage](#usage)
- [Loading an image resource](#loading-an-image-resource)
- [Platform specific implementations](#platform-specific-implementations)
-[Desktop only implementations](#desktop-only-implementations)
-[Android only implementations](#android-only-implementations)
- [Desktop only implementations](#desktop-only-implementations)
- [Android only implementations](#android-only-implementations)
- [Configuring an image resource](#configuring-an-image-resource)
- [Displaying an image resource](#displaying-an-image-resource)
- [Crossfade animation](#crossfade-animation)
Expand Down Expand Up @@ -48,7 +48,7 @@ kotlin {
sourceSets {
commonMain {
dependencies {
implementation("com.alialbaali.kamel:kamel-image:0.1.1")
implementation("com.alialbaali.kamel:kamel-image:0.2.0")
// ...
}
}
Expand All @@ -62,7 +62,7 @@ Add the dependency to the dependencies block:

```kotlin
dependencies {
implementation("com.alialbaali.kamel:kamel-image:0.1.1")
implementation("com.alialbaali.kamel:kamel-image:0.2.0")
// ...
}
```
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.1.2-SNAPSHOT"
const val Version = "0.2.0"
}

0 comments on commit 237a526

Please sign in to comment.