diff --git a/CHANGELOG.md b/CHANGELOG.md index 70e32c77c6..f6ff0119f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [1.0.0] - October 22, 2020 + +Changes since `0.13.0`: +- 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)) + +Changes since `1.0.0-rc3`: +- Fix: Guard against missing/invalid ActivityManager. ([#541](https://github.com/coil-kt/coil/pull/541)) +- Fix: Allow OkHttp to cache unsuccessful responses. ([#551](https://github.com/coil-kt/coil/pull/551)) +- Update Kotlin to 1.4.10. +- Update Okio to 2.9.0. +- Update `androidx.exifinterface:exifinterface` to 1.3.1. + ## [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. diff --git a/README-ko.md b/README-ko.md index 3c978a6db9..ce5adb8452 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:1.0.0-rc3") +implementation("io.coil-kt:coil:1.0.0") ``` ## 빠른 시작 diff --git a/README-zh.md b/README-zh.md index 4424d9b0a0..d7ad15b373 100644 --- a/README-zh.md +++ b/README-zh.md @@ -16,7 +16,7 @@ Coil的首字母由来:取**Co**routine,**I**mage和**L**oader得来Coil。 Coil允许使用`mavenCentral()`. ```kotlin -implementation("io.coil-kt:coil:1.0.0-rc3") +implementation("io.coil-kt:coil:1.0.0") ``` ## 快速使用 diff --git a/README.md b/README.md index eaebe92054..85d95260f2 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:1.0.0-rc3") +implementation("io.coil-kt:coil:1.0.0") ``` ## Quick Start diff --git a/coil-gif/README.md b/coil-gif/README.md index a2c9c92756..e60dccb91e 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:1.0.0-rc3") +implementation("io.coil-kt:coil-gif:1.0.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 25a0786448..e164178c96 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:1.0.0-rc3") +implementation("io.coil-kt:coil-svg:1.0.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 aee060b98e..c422a6cf1d 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:1.0.0-rc3") +implementation("io.coil-kt:coil-video:1.0.0") ``` And add the two fetchers to your component registry when constructing your `ImageLoader`: diff --git a/gradle.properties b/gradle.properties index 0f715ce8b2..33d544bd16 100644 --- a/gradle.properties +++ b/gradle.properties @@ -16,7 +16,7 @@ compileSdk=30 # Maven GROUP=io.coil-kt -VERSION_NAME=1.0.0-SNAPSHOT +VERSION_NAME=1.0.0 POM_DESCRIPTION=An image loading library for Android backed by Kotlin Coroutines. POM_INCEPTION_YEAR=2019