Skip to content

Commit

Permalink
Prepare 2.2.1. (#1438)
Browse files Browse the repository at this point in the history
* Prepare 2.2.1.

* Update notes.

* Update notes.
  • Loading branch information
colinrtwhite committed Sep 8, 2022
1 parent 8b75629 commit e815e78
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 12 deletions.
8 changes: 8 additions & 0 deletions 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.
Expand Down
4 changes: 2 additions & 2 deletions README-ko.md
Expand Up @@ -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")
```

## 빠른 시작
Expand Down Expand Up @@ -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를 사용하세요:
Expand Down
2 changes: 1 addition & 1 deletion README-tr.md
Expand Up @@ -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ıç
Expand Down
4 changes: 2 additions & 2 deletions README-zh.md
Expand Up @@ -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")
```

## 快速上手
Expand Down Expand Up @@ -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` 加载图片:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion coil-compose-singleton/README.md
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion coil-gif/README.md
Expand Up @@ -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`:
Expand Down
2 changes: 1 addition & 1 deletion coil-svg/README.md
Expand Up @@ -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`:
Expand Down
2 changes: 1 addition & 1 deletion coil-video/README.md
Expand Up @@ -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`:
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Expand Up @@ -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
Expand Down

0 comments on commit e815e78

Please sign in to comment.