Skip to content

Commit

Permalink
Prepare 1.2.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
colinrtwhite committed Jun 4, 2021
1 parent 0440490 commit bf6d29d
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 7 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 1,17 @@
# Changelog

## [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))
- Fix `ImageLoader.Builder.fallback` setting the `error` drawable instead of the `fallback` drawable.
- Fix incorrect data source returned by `ResourceUriFetcher`. ([#770](https://github.com/coil-kt/coil/pull/770))
- Fix log check for no available file descriptors on API 26 and 27.
- Fix incorrect version check for platform vector drawable support. ([#751](https://github.com/coil-kt/coil/pull/751))
- Update Kotlin (1.5.10).
- Update Coroutines (1.5.0).
- Update `androidx.appcompat:appcompat-resources` to 1.3.0.
- Update `androidx.core:core-ktx` to 1.5.0.

## [1.2.1] - April 27, 2021

- Fix `VideoFrameUriFetcher` attempting to handle http/https URIs. ([#734](https://github.com/coil-kt/coil/pull/734)
Expand Down
2 changes: 1 addition & 1 deletion README-ko.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 16,7 @@ Coil은: **Co**routine **I**mage **L**oader의 약자입니다.
Coil은 `mavenCentral()`로 이용 가능합니다.

```kotlin
implementation("io.coil-kt:coil:1.2.1")
implementation("io.coil-kt:coil:1.2.2")
```

## 빠른 시작
Expand Down
2 changes: 1 addition & 1 deletion README-zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 16,7 @@ Coil 名字的由来:取 **Co**routine **I**mage **L**oader 首字母得来。
Coil 可以在 `mavenCentral()` 下载

```kotlin
implementation("io.coil-kt:coil:1.2.1")
implementation("io.coil-kt:coil:1.2.2")
```

## 快速上手
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
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:1.2.1")
implementation("io.coil-kt:coil:1.2.2")
```

## Quick Start
Expand Down
2 changes: 1 addition & 1 deletion coil-gif/README.md
Original file line number Diff line number Diff line change
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:1.2.1")
implementation("io.coil-kt:coil-gif:1.2.2")
```

And add the decoders to your component registry when constructing your `ImageLoader`:
Expand Down
2 changes: 1 addition & 1 deletion coil-svg/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 3,7 @@
To add SVG support, import the extension library:

```kotlin
implementation("io.coil-kt:coil-svg:1.2.1")
implementation("io.coil-kt:coil-svg:1.2.2")
```

And add the decoder to your component registry when constructing your `ImageLoader`:
Expand Down
2 changes: 1 addition & 1 deletion coil-video/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 3,7 @@
To add video frame support, import the extension library:

```kotlin
implementation("io.coil-kt:coil-video:1.2.1")
implementation("io.coil-kt:coil-video:1.2.2")
```

And add the two fetchers and the decoder to your component registry when constructing your `ImageLoader`:
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 16,7 @@ compileSdk=30

# Maven
GROUP=io.coil-kt
VERSION_NAME=1.3.0-SNAPSHOT
VERSION_NAME=1.2.2

POM_DESCRIPTION=An image loading library for Android backed by Kotlin Coroutines.
POM_INCEPTION_YEAR=2019
Expand Down

0 comments on commit bf6d29d

Please sign in to comment.