From 71343ddb20a5cd104cf1ac840c4afe2e97cbabba Mon Sep 17 00:00:00 2001 From: Colin White Date: Mon, 3 Feb 2020 23:02:36 -0800 Subject: [PATCH] Prepare 0.9.4. --- CHANGELOG.md | 9 +++++++++ README-ko.md | 2 +- README.md | 2 +- coil-gif/README.md | 2 +- coil-svg/README.md | 2 +- gradle.properties | 2 +- 6 files changed, 14 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 44d734ba04..2dbffaa9d7 100644 --- a/CHANGELOG.md +++ b/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. diff --git a/README-ko.md b/README-ko.md index ca7f8193c4..8cbbe483a9 100644 --- a/README-ko.md +++ b/README-ko.md @@ -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") ``` ## 빠른 시작 diff --git a/README.md b/README.md index 770b373881..d9fae98c06 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/coil-gif/README.md b/coil-gif/README.md index fe7cf0b8ed..434264850a 100644 --- a/coil-gif/README.md +++ b/coil-gif/README.md @@ -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`: diff --git a/coil-svg/README.md b/coil-svg/README.md index aca37a7db7..cd990f923c 100644 --- a/coil-svg/README.md +++ b/coil-svg/README.md @@ -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`: diff --git a/gradle.properties b/gradle.properties index 588d1356ce..dfbfa5887a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -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