From 9df320f2aadbe00ec1f01c01961c48f1b6c1c92e Mon Sep 17 00:00:00 2001 From: Colin White Date: Sat, 10 Jul 2021 17:13:28 -0500 Subject: [PATCH] Prepare 1.3.0. --- CHANGELOG.md | 11 +++++++++++ README-ko.md | 2 +- README-zh.md | 2 +- README.md | 2 +- coil-gif/README.md | 2 +- coil-svg/README.md | 2 +- coil-video/README.md | 2 +- gradle.properties | 2 +- 8 files changed, 18 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e3e337a75..94851178ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [1.3.0] - July 10, 2021 + +- **New**: Add support for [Jetpack Compose](https://developer.android.com/jetpack/compose). It's based on [Accompanist](https://github.com/google/accompanist/)'s Coil integration, but has a number of changes. Check out [the docs](https://coil-kt.github.io/coil/compose/) for more info. +- Add `allowConversionToBitmap` to enable/disable the automatic bitmap conversion for `Transformation`s. ([#775](https://github.com/coil-kt/coil/pull/775)) +- Add `enforceMinimumFrameDelay` to `ImageDecoderDecoder` and `GifDecoder` to enable rewriting a GIF's frame delay if it's below a threshold. ([#783](https://github.com/coil-kt/coil/pull/783)) + - This is disabled by default, but will be enabled by default in a future release. +- Add support for enabling/disabling an `ImageLoader`'s internal network observer. ([#741](https://github.com/coil-kt/coil/pull/741)) +- Fix the density of bitmaps decoded by `BitmapFactoryDecoder`. ([#776](https://github.com/coil-kt/coil/pull/776)) +- Fix Licensee not finding Coil's licence url. ([#774](https://github.com/coil-kt/coil/pull/774)) +- Update `androidx.core:core-ktx` to 1.6.0. + ## [1.2.2] - June 4, 2021 - Fix race condition while converting a drawable with shared state to a bitmap. ([#771](https://github.com/coil-kt/coil/pull/771)) diff --git a/README-ko.md b/README-ko.md index 9515999b76..5c33606f4e 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:1.2.2") +implementation("io.coil-kt:coil:1.3.0") ``` ## 빠른 시작 diff --git a/README-zh.md b/README-zh.md index 038c8cf8ad..0feeb96fe9 100644 --- a/README-zh.md +++ b/README-zh.md @@ -16,7 +16,7 @@ Coil 名字的由来:取 **Co**routine **I**mage **L**oader 首字母得来。 Coil 可以在 `mavenCentral()` 下载 ```kotlin -implementation("io.coil-kt:coil:1.2.2") +implementation("io.coil-kt:coil:1.3.0") ``` ## 快速上手 diff --git a/README.md b/README.md index f3e40945b4..c4aabeee04 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:1.2.2") +implementation("io.coil-kt:coil:1.3.0") ``` ## Quick Start diff --git a/coil-gif/README.md b/coil-gif/README.md index 4e032c326b..3e3ada7300 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:1.2.2") +implementation("io.coil-kt:coil-gif:1.3.0") ``` 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 b247861b0d..cdf59f8062 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:1.2.2") +implementation("io.coil-kt:coil-svg:1.3.0") ``` 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 edf5369b14..3d392575a8 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:1.2.2") +implementation("io.coil-kt:coil-video:1.3.0") ``` And add the two fetchers and the decoder to your component registry when constructing your `ImageLoader`: diff --git a/gradle.properties b/gradle.properties index 0c2a34fcfa..905d2a5ba1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -16,7 +16,7 @@ compileSdk=30 # Maven GROUP=io.coil-kt -VERSION_NAME=1.3.0-SNAPSHOT +VERSION_NAME=1.3.0 POM_DESCRIPTION=An image loading library for Android backed by Kotlin Coroutines. POM_INCEPTION_YEAR=2019