diff --git a/CHANGELOG.md b/CHANGELOG.md index 88945124f8..01c0891c6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [2.1.0] - May 17, 2022 + +- **New**: Support loading `ByteArray`s. ([#1202](https://github.com/coil-kt/coil/pull/1202)) +- **New**: Support setting custom CSS rules for SVGs using `ImageRequest.Builder.css`. ([#1210](https://github.com/coil-kt/coil/pull/1210)) +- Fix: Convert `GenericViewTarget`'s private methods to protected. ([#1273](https://github.com/coil-kt/coil/pull/1273)) +- Update compile SDK to 32. ([#1268](https://github.com/coil-kt/coil/pull/1268)) + ## [2.0.0] - May 10, 2022 Coil 2.0.0 is a major iteration of the library and includes breaking changes. Check out the [upgrade guide](https://coil-kt.github.io/coil/upgrading/) for how to upgrade. diff --git a/README-ko.md b/README-ko.md index 8ea29cb1c1..fac9e5045d 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.0.0") +implementation("io.coil-kt:coil:2.1.0") ``` ## 빠른 시작 @@ -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.0.0") +implementation("io.coil-kt:coil-compose:2.1.0") ``` 이미지를 불러오려면, `AsyncImage` composable를 사용하세요: diff --git a/README-tr.md b/README-tr.md index 7aeaa2497f..65f050c5b9 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.0.0") +implementation("io.coil-kt:coil:2.1.0") ``` ## Hızlı Başlangıç diff --git a/README-zh.md b/README-zh.md index a2ea23f737..e1f657eccc 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.0.0") +implementation("io.coil-kt:coil:2.1.0") ``` ## 快速上手 @@ -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.0.0") +implementation("io.coil-kt:coil-compose:2.1.0") ``` 使用 `AsyncImage` 加载图片: diff --git a/README.md b/README.md index e66333277a..4895ebd1aa 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.0.0") +implementation("io.coil-kt:coil:2.1.0") ``` ## 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.0.0") +implementation("io.coil-kt:coil-compose:2.1.0") ``` To load an image, use the `AsyncImage` composable: diff --git a/coil-compose-singleton/README.md b/coil-compose-singleton/README.md index 485c84bcf3..0319756dac 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.0.0") +implementation("io.coil-kt:coil-compose:2.1.0") ``` Then use the `AsyncImage` composable to load and display an image: diff --git a/coil-gif/README.md b/coil-gif/README.md index 563753d735..c52b59b33b 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.0.0") +implementation("io.coil-kt:coil-gif:2.1.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 675481134a..ea0bc41862 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.0.0") +implementation("io.coil-kt:coil-svg:2.1.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 ccaafd6b98..5636161838 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.0.0") +implementation("io.coil-kt:coil-video:2.1.0") ``` And add the decoder to your component registry when constructing your `ImageLoader`: diff --git a/gradle.properties b/gradle.properties index af74d8a36a..777005d9f7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -19,7 +19,7 @@ compileSdk=32 # Maven GROUP=io.coil-kt -VERSION_NAME=2.1.0-SNAPSHOT +VERSION_NAME=2.1.0 POM_DESCRIPTION=An image loading library for Android backed by Kotlin Coroutines. POM_INCEPTION_YEAR=2019