Skip to content

Commit

Permalink
Prepare 2.0.0-alpha08.
Browse files Browse the repository at this point in the history
  • Loading branch information
colinrtwhite committed Feb 7, 2022
1 parent 090a6d7 commit bd79a26
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [2.0.0-alpha08] - February 7, 2022

- Update `DiskCache` and `ImageSource` to use to Okio's `FileSystem` API. ([#1115](https://github.com/coil-kt/coil/pull/1115))

## [2.0.0-alpha07] - January 30, 2022

- Significantly improve `AsyncImage` performance and split `AsyncImage` into `AsyncImage` and `SubcomposeAsyncImage`. ([#1048](https://github.com/coil-kt/coil/pull/1048))
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/plugins.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
rootProject.extra.apply {
set("androidPlugin", "com.android.tools.build:gradle:7.1.0")
set("androidPlugin", "com.android.tools.build:gradle:7.1.1")
set("kotlinPlugin", "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10")
set("dokkaPlugin", "org.jetbrains.dokka:dokka-gradle-plugin:1.6.10")
set("mavenPublishPlugin", "com.vanniktech:gradle-maven-publish-plugin:0.18.0")
Expand Down
1 change: 1 addition & 0 deletions coil-base/src/main/java/coil/fetch/FileFetcher.kt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import okio.Path.Companion.toOkioPath
import java.io.File

internal class FileFetcher(private val data: File) : Fetcher {

override suspend fun fetch(): FetchResult {
return SourceResult(
source = ImageSource(file = data.toOkioPath()),
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ compileSdk=31

# Maven
GROUP=io.coil-kt
VERSION_NAME=2.0.0-SNAPSHOT
VERSION_NAME=2.0.0-alpha08

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

0 comments on commit bd79a26

Please sign in to comment.