From afe1a4c4dac224497d72b6f4c055628186d08c9d Mon Sep 17 00:00:00 2001 From: Colin White Date: Sat, 25 Mar 2023 16:37:04 -0700 Subject: [PATCH] Prepare 2.3.0. --- README-ja.md | 4 ++-- 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, 14 insertions(+), 14 deletions(-) diff --git a/README-ja.md b/README-ja.md index a05e74b477..78a9030f86 100644 --- a/README-ja.md +++ b/README-ja.md @@ -16,7 +16,7 @@ Coil は **Co**routine **I**mage **L**oader の頭字語です。 Coil は `mavenCentral()` で利用できます。 ```kotlin -implementation("io.coil-kt:coil:2.2.2") +implementation("io.coil-kt:coil:2.3.0") ``` ## クイックスタート @@ -50,7 +50,7 @@ imageView.load("https://example.com/image.jpg") { [Jetpack Compose](https://developer.android.com/jetpack/compose) 拡張ライブラリをインポートします: ```kotlin -implementation("io.coil-kt:coil-compose:2.2.2") +implementation("io.coil-kt:coil-compose:2.3.0") ``` 画像を読み込むには、`AsyncImage` composable を使用します: diff --git a/README-ko.md b/README-ko.md index 66b7969b9a..da24b1a4fc 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.2") +implementation("io.coil-kt:coil:2.3.0") ``` ## 빠른 시작 @@ -50,7 +50,7 @@ imageView.load("https://example.com/image.jpg") { [Jetpack Compose](https://developer.android.com/jetpack/compose) 확장 라이브러리 추가: ```kotlin -implementation("io.coil-kt:coil-compose:2.2.2") +implementation("io.coil-kt:coil-compose:2.3.0") ``` 이미지를 불러오려면, `AsyncImage` composable를 사용하세요: diff --git a/README-tr.md b/README-tr.md index 090a9ceb1f..1f05e88d53 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.2") +implementation("io.coil-kt:coil:2.3.0") ``` ## Hızlı Başlangıç diff --git a/README-zh.md b/README-zh.md index 6fda26d48e..9dbc228327 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.2") +implementation("io.coil-kt:coil:2.3.0") ``` ## 快速上手 @@ -49,7 +49,7 @@ imageView.load("https://example.com/image.jpg") { 引入 [Jetpack Compose](https://developer.android.com/jetpack/compose) 扩展库: ```kotlin -implementation("io.coil-kt:coil-compose:2.2.2") +implementation("io.coil-kt:coil-compose:2.3.0") ``` 使用 `AsyncImage` 加载图片: diff --git a/README.md b/README.md index 988cd35d78..ef4934e5c3 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.2") +implementation("io.coil-kt:coil:2.3.0") ``` ## Quick Start @@ -50,7 +50,7 @@ imageView.load("https://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.2") +implementation("io.coil-kt:coil-compose:2.3.0") ``` To load an image, use the `AsyncImage` composable: diff --git a/coil-compose-singleton/README.md b/coil-compose-singleton/README.md index 7b67c38fa1..f2bc25dcba 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.2") +implementation("io.coil-kt:coil-compose:2.3.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 e57cd13652..332d4794c3 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.2") +implementation("io.coil-kt:coil-gif:2.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 07ad5a2460..9e2e3224cb 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.2") +implementation("io.coil-kt:coil-svg:2.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 e50001bb44..69261f9ca3 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.2") +implementation("io.coil-kt:coil-video:2.3.0") ``` And add the decoder to your component registry when constructing your `ImageLoader`: diff --git a/gradle.properties b/gradle.properties index 6a8f550fa9..ff281f880e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -22,7 +22,7 @@ SONATYPE_HOST=DEFAULT RELEASE_SIGNING_ENABLED=true GROUP=io.coil-kt -VERSION_NAME=2.3.0-SNAPSHOT +VERSION_NAME=2.3.0 POM_DESCRIPTION=An image loading library for Android backed by Kotlin Coroutines. POM_INCEPTION_YEAR=2019