Skip to content

Commit

Permalink
Prepare 2.1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
colinrtwhite committed May 17, 2022
1 parent b9f1389 commit 192070b
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 12 deletions.
7 changes: 7 additions & 0 deletions 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.
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.0.0")
implementation("io.coil-kt:coil:2.1.0")
```

## 빠른 시작
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.0.0")
implementation("io.coil-kt:coil-compose:2.1.0")
```

이미지를 불러오려면, `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.0.0")
implementation("io.coil-kt:coil:2.1.0")
```

## 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.0.0")
implementation("io.coil-kt:coil:2.1.0")
```

## 快速上手
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.0.0")
implementation("io.coil-kt:coil-compose:2.1.0")
```

使用 `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.0.0")
implementation("io.coil-kt:coil:2.1.0")
```

## 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.0.0")
implementation("io.coil-kt:coil-compose:2.1.0")
```

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.0.0")
implementation("io.coil-kt:coil-compose:2.1.0")
```

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.0.0")
implementation("io.coil-kt:coil-gif:2.1.0")
```

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.0.0")
implementation("io.coil-kt:coil-svg:2.1.0")
```

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.0.0")
implementation("io.coil-kt:coil-video:2.1.0")
```

And add the decoder to your component registry when constructing your `ImageLoader`:
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Expand Up @@ -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
Expand Down

0 comments on commit 192070b

Please sign in to comment.