Skip to content

Commit

Permalink
Prepare 0.9.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
colinrtwhite committed Feb 4, 2020
1 parent a0b01d2 commit 71343dd
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,14 @@
# Changelog

## [0.9.4] - February 3, 2020

- Fix: Respect aspect ratio when downsampling in ImageDecoderDecoder. Thanks @zhanghai.

---

- Previously bitmaps would be returned from the memory cache as long as their config was greater than or equal to the config specified in the request. For example, if you requested an `ARGB_8888` bitmap, it would be possible to have a `RGBA_F16` bitmap returned to you from the memory cache. Now, the cached config and the requested config must be equal.
- Make `scale` and `durationMillis` public in `CrossfadeDrawable` and `CrossfadeTransition`.

## [0.9.3] - February 1, 2020

- Fix: Translate child drawable inside `ScaleDrawable` to ensure it is centered.
Expand Down
2 changes: 1 addition & 1 deletion README-ko.md
Expand Up @@ -16,7 +16,7 @@ Coil은: **Co**routine **I**mage **L**oader의 약자입니다.
Coil은`mavenCentral()`로 이용 가능합니다.

```kotlin
implementation("io.coil-kt:coil:0.9.3")
implementation("io.coil-kt:coil:0.9.4")
```

## 빠른 시작
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -16,7 +16,7 @@ Made with ❤️ at [Instacart](https://www.instacart.com). Translations: [한
Coil is available on `mavenCentral()`.

```kotlin
implementation("io.coil-kt:coil:0.9.3")
implementation("io.coil-kt:coil:0.9.4")
```

## Quick Start
Expand Down
2 changes: 1 addition & 1 deletion coil-gif/README.md
Expand Up @@ -5,7 +5,7 @@ Unlike Glide, GIFs are not supported by default. However, Coil has an extension
To add GIF support, import the extension library:

```kotlin
implementation("io.coil-kt:coil-gif:0.9.3")
implementation("io.coil-kt:coil-gif:0.9.4")
```

And add the decoders to your component registry when constructing your `ImageLoader`:
Expand Down
2 changes: 1 addition & 1 deletion coil-svg/README.md
Expand Up @@ -3,7 +3,7 @@
To add SVG support, import the extension library:

```kotlin
implementation("io.coil-kt:coil-svg:0.9.3")
implementation("io.coil-kt:coil-svg:0.9.4")
```

And add the decoder to your component registry when constructing your `ImageLoader`:
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Expand Up @@ -13,7 +13,7 @@ compileSdk=29

# Maven
GROUP=io.coil-kt
VERSION_NAME=0.10.0-SNAPSHOT
VERSION_NAME=0.9.4

POM_DESCRIPTION=An image loading library for Android backed by Kotlin Coroutines.
POM_INCEPTION_YEAR=2019
Expand Down

0 comments on commit 71343dd

Please sign in to comment.