Skip to content

Commit

Permalink
Prepare 2.0.0-alpha05.
Browse files Browse the repository at this point in the history
  • Loading branch information
colinrtwhite committed Nov 28, 2021
1 parent 599e86e commit bbc6d91
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [2.0.0-alpha05] - November 28, 2021

- **Important**: Refactor `Size` to support using the image's original size for either dimension.
- `Size` is now composed of two `Dimension` values for its width and height. `Dimension` can either be a positive pixel value or `Dimension.Original`.
- This change was made to better support unbounded width/height values (e.g. `wrap_content`, `Constraints.Infinity`) when one dimension is a fixed pixel value.
- Fix: Support inspection mode (preview) for `AsyncImage`.
- Fix: `SuccessResult.memoryCacheKey` should always be `null` if `imageLoader.memoryCache` is null.
- Convert `ImageLoader`, `SizeResolver`, and `ViewSizeResolver` constructor-like `invoke` functions to top level functions.
- Make `CrossfadeDrawable` start and end drawables public API.
- Mutate `ImageLoader` placeholder/error/fallback drawables.
- Add default arguments to `SuccessResult`'s constructor.
- Depend on `androidx.collection` instead of `androidx.collection-ktx`.
- Update Okhttp to 4.9.3.

## [2.0.0-alpha04] - November 22, 2021

- **New**: Add `AsyncImage` to `coil-compose`.
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=31

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

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

0 comments on commit bbc6d91

Please sign in to comment.