diff --git a/CHANGELOG.md b/CHANGELOG.md index a4e8929e6c..b31c7b3c37 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [0.10.1] - April 26, 2020 + +- Fix OOM when decoding large PNGs on API 23 and below. ([#372](https://github.com/coil-kt/coil/pull/372)). + - This disables decoding EXIF orientation for PNG files. PNG EXIF orientation is very rarely used and reading PNG EXIF data (even if it's empty) requires buffering the entire file into memory, which is bad for performance. +- Minor Java compatibility improvements to `SparseIntArraySet`. + +--- + +- Update Okio to 2.6.0. + ## [0.10.0] - April 20, 2020 ### Highlights diff --git a/README-ko.md b/README-ko.md index fa7c437b6d..9177c4a727 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.10.0") +implementation("io.coil-kt:coil:0.10.1") ``` ## 빠른 시작 diff --git a/README.md b/README.md index 43f4b9826c..13be7da49d 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.10.0") +implementation("io.coil-kt:coil:0.10.1") ``` ## Quick Start diff --git a/coil-gif/README.md b/coil-gif/README.md index 01ee4e32c6..0252fa5458 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.10.0") +implementation("io.coil-kt:coil-gif:0.10.1") ``` 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 c37ec591cd..e634a838d5 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.10.0") +implementation("io.coil-kt:coil-svg:0.10.1") ``` And add the decoder to your component registry when constructing your `ImageLoader`: diff --git a/coil-video/README.md b/coil-video/README.md index b7e7251055..5d9a2d229f 100644 --- a/coil-video/README.md +++ b/coil-video/README.md @@ -3,7 +3,7 @@ To add video frame support, import the extension library: ```kotlin -implementation("io.coil-kt:coil-video:0.10.0") +implementation("io.coil-kt:coil-video:0.10.1") ``` And add the two fetchers to your component registry when constructing your `ImageLoader`: diff --git a/gradle.properties b/gradle.properties index 299f249354..f74f3584d0 100644 --- a/gradle.properties +++ b/gradle.properties @@ -13,7 +13,7 @@ compileSdk=29 # Maven GROUP=io.coil-kt -VERSION_NAME=0.11.0-SNAPSHOT +VERSION_NAME=0.10.1 POM_DESCRIPTION=An image loading library for Android backed by Kotlin Coroutines. POM_INCEPTION_YEAR=2019