From e815e78a7f401a15944ed52d6cc53a975fa757f2 Mon Sep 17 00:00:00 2001 From: Colin White Date: Wed, 7 Sep 2022 21:43:29 -0700 Subject: [PATCH] Prepare 2.2.1. (#1438) * Prepare 2.2.1. * Update notes. * Update notes. --- CHANGELOG.md | 8 ++++++++ README-ko.md | 4 ++-- README-tr.md | 2 +- README-zh.md | 4 ++-- README.md | 4 ++-- coil-compose-singleton/README.md | 2 +- coil-gif/README.md | 2 +- coil-svg/README.md | 2 +- coil-video/README.md | 2 +- gradle.properties | 2 +- 10 files changed, 20 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e468a124e..dc04740ab5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [2.2.1] - September 8, 2022 + +- Fix: `RoundedCornersTransformation` now properly scales the `input` bitmap. +- Remove dependency on the `kotlin-parcelize` plugin. +- Update compile SDK to 33. +- Downgrade `androidx.appcompat:appcompat-resources` to 1.4.2. + - This is to work around [#1423](https://github.com/coil-kt/coil/issues/1423). + ## [2.2.0] - August 16, 2022 - **New**: Add `ImageRequest.videoFramePercent` to `coil-video` to support specifying the video frame as a percent of the video's duration. diff --git a/README-ko.md b/README-ko.md index 6149168c4d..6b2bb57584 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:2.2.0") +implementation("io.coil-kt:coil:2.2.1") ``` ## 빠른 시작 @@ -50,7 +50,7 @@ imageView.load("https://www.example.com/image.jpg") { [Jetpack Compose](https://developer.android.com/jetpack/compose) 확장 라이브러리 추가: ```kotlin -implementation("io.coil-kt:coil-compose:2.2.0") +implementation("io.coil-kt:coil-compose:2.2.1") ``` 이미지를 불러오려면, `AsyncImage` composable를 사용하세요: diff --git a/README-tr.md b/README-tr.md index 1966e58763..defac6a0ef 100644 --- a/README-tr.md +++ b/README-tr.md @@ -17,7 +17,7 @@ Coil şunların baş harflerinden oluşur: **Co**routine **I**mage **L**oader. Coil `mavenCentral()`'da mevcuttur. ```kotlin -implementation("io.coil-kt:coil:2.2.0") +implementation("io.coil-kt:coil:2.2.1") ``` ## Hızlı Başlangıç diff --git a/README-zh.md b/README-zh.md index 54b1cde7c1..a0a3c83bc8 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:2.2.0") +implementation("io.coil-kt:coil:2.2.1") ``` ## 快速上手 @@ -49,7 +49,7 @@ imageView.load("https://www.example.com/image.jpg") { 引入 [Jetpack Compose](https://developer.android.com/jetpack/compose) 扩展库: ```kotlin -implementation("io.coil-kt:coil-compose:2.2.0") +implementation("io.coil-kt:coil-compose:2.2.1") ``` 使用 `AsyncImage` 加载图片: diff --git a/README.md b/README.md index 9a9262f780..6712c6ea4a 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:2.2.0") +implementation("io.coil-kt:coil:2.2.1") ``` ## Quick Start @@ -50,7 +50,7 @@ imageView.load("https://www.example.com/image.jpg") { Import the [Jetpack Compose](https://developer.android.com/jetpack/compose) extension library: ```kotlin -implementation("io.coil-kt:coil-compose:2.2.0") +implementation("io.coil-kt:coil-compose:2.2.1") ``` To load an image, use the `AsyncImage` composable: diff --git a/coil-compose-singleton/README.md b/coil-compose-singleton/README.md index e1dbb1534d..1a78772a22 100644 --- a/coil-compose-singleton/README.md +++ b/coil-compose-singleton/README.md @@ -3,7 +3,7 @@ To add support for [Jetpack Compose](https://developer.android.com/jetpack/compose), import the extension library: ```kotlin -implementation("io.coil-kt:coil-compose:2.2.0") +implementation("io.coil-kt:coil-compose:2.2.1") ``` Then use the `AsyncImage` composable to load and display an image: diff --git a/coil-gif/README.md b/coil-gif/README.md index 63c5330fd8..474316202b 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:2.2.0") +implementation("io.coil-kt:coil-gif:2.2.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 3158feb2ff..75a1ad81c0 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:2.2.0") +implementation("io.coil-kt:coil-svg:2.2.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 0c638d594f..b744f9c385 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:2.2.0") +implementation("io.coil-kt:coil-video:2.2.1") ``` And add the decoder to your component registry when constructing your `ImageLoader`: diff --git a/gradle.properties b/gradle.properties index aa72b49522..1d12a0b81e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -25,7 +25,7 @@ SONATYPE_HOST=DEFAULT RELEASE_SIGNING_ENABLED=true GROUP=io.coil-kt -VERSION_NAME=2.3.0-SNAPSHOT +VERSION_NAME=2.2.1 POM_DESCRIPTION=An image loading library for Android backed by Kotlin Coroutines. POM_INCEPTION_YEAR=2019