Skip to content

Commit

Permalink
Prepare 1.0.0-rc3.
Browse files Browse the repository at this point in the history
  • Loading branch information
colinrtwhite committed Sep 21, 2020
1 parent 62c3e90 commit 5afa597
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 9 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## [1.0.0-rc3] - September 21, 2020

- Revert using the [`-Xjvm-default=all`](https://blog.jetbrains.com/kotlin/2020/07/kotlin-1-4-m3-generating-default-methods-in-interfaces/) compiler flag due to instability.
- **This is a source compatible, but binary incompatible change from previous release candidate versions.**
- Add `Context.imageLoader` extension function. ([#534]((https://github.com/coil-kt/coil/pull/534)))
- Add `ImageLoader.executeBlocking` extension function. ([#537]((https://github.com/coil-kt/coil/pull/537)))
- Don't shutdown previous singleton image loader if replaced. ([#533]((https://github.com/coil-kt/coil/pull/533)))
- Update AndroidX dependencies:
- `androidx.exifinterface:exifinterface` -> 1.3.0

## [1.0.0-rc2] - September 3, 2020

- **This release requires Kotlin 1.4.0 or above.**
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:0.13.0")
implementation("io.coil-kt:coil:1.0.0-rc3")
```

## 빠른 시작
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。
Coil允许使用`mavenCentral()`.

```kotlin
implementation("io.coil-kt:coil:0.13.0")
implementation("io.coil-kt:coil:1.0.0-rc3")
```

## 快速使用
Expand Down
6 changes: 3 additions & 3 deletions 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:0.13.0")
implementation("io.coil-kt:coil:1.0.0-rc3")
```

## Quick Start
Expand Down Expand Up @@ -48,10 +48,10 @@ imageView.load("https://www.example.com/image.jpg") {

#### Image Loaders

`imageView.load` uses the singleton `ImageLoader` to enqueue an `ImageRequest`. The singleton `ImageLoader` can be accessed using:
`imageView.load` uses the singleton `ImageLoader` to enqueue an `ImageRequest`. The singleton `ImageLoader` can be accessed using an extension function:

```kotlin
val imageLoader = Coil.imageLoader(context)
val imageLoader = context.imageLoader
```

Optionally, you can create your own `ImageLoader` instance(s) and inject them with dependency injection:
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:0.13.0")
implementation("io.coil-kt:coil-gif:1.0.0-rc3")
```

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:0.13.0")
implementation("io.coil-kt:coil-svg:1.0.0-rc3")
```

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:0.13.0")
implementation("io.coil-kt:coil-video:1.0.0-rc3")
```

And add the two fetchers 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.0.0-SNAPSHOT
VERSION_NAME=1.0.0-rc3

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

0 comments on commit 5afa597

Please sign in to comment.