From 351a1aebf1fb207c2bc488247799bbf2ae966c40 Mon Sep 17 00:00:00 2001 From: Gabriel Peal Date: Fri, 29 Dec 2023 17:44:46 -0800 Subject: [PATCH] v6.3.0 --- CHANGELOG.md | 14 ++++++++++++++ CHANGELOG_COMPOSE.md | 4 ++++ gradle.properties | 2 +- 3 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 57a2b080e2..eed287155b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# 6.3.0 +### New Features +* Add support dynamic path properties on shape contents ([#2439](https://github.com/airbnb/lottie-android/pull/2439)) +* Add support for gzipped and tgs files ([#2435](https://github.com/airbnb/lottie-android/pull/2435)) +* Add an option to clip text if it extends beyond its bounding box ([#2412](https://github.com/airbnb/lottie-android/pull/2412)) + +### Bugs Fixes +* Make all LottieAnimationView setters idempotent ([#2441](https://github.com/airbnb/lottie-android/pull/2441)) +* Fix a rendering artifact for polygons with large strokes ([#2440](https://github.com/airbnb/lottie-android/pull/2440)) +* Re-scale bitmaps if the system scale changes ([#2438](https://github.com/airbnb/lottie-android/pull/2438)) +* Handle null color callbacks in solid layer ([#2434](https://github.com/airbnb/lottie-android/pull/2434)) +* Handle null shape data end values ([#2433](https://github.com/airbnb/lottie-android/pull/2433)) +* Fix gradient colors when the progress is <0 or > 1 ([#2427](https://github.com/airbnb/lottie-android/pull/2427)) + # 6.2.0 ### New Features * Implement screen, overlay, darken, lighten, and add blend modes ([#2408](https://github.com/airbnb/lottie-android/pull/2408)) diff --git a/CHANGELOG_COMPOSE.md b/CHANGELOG_COMPOSE.md index 3596c25008..6057da1599 100644 --- a/CHANGELOG_COMPOSE.md +++ b/CHANGELOG_COMPOSE.md @@ -1,3 +1,7 @@ +# 6.3.0 +* Add LottiePainter and rememberLottiePainter to use Lottie anywhere a Painter can be used ([#2442](https://github.com/airbnb/lottie-android/pull/2442)) +* Constrain unconstrainted bounds when the other dimension is constrained ([#2437](https://github.com/airbnb/lottie-android/pull/2437)) + # 6.1.0 * Key dynamic properties on composition to ensure that they are set if the composition changes ([#2290](https://github.com/airbnb/lottie-android/pull/2290)) * Add `@JvmOverloads` to `LottieAnimation` to improve binary compatibility ([#2320](https://github.com/airbnb/lottie-android/pull/2320)) diff --git a/gradle.properties b/gradle.properties index 018b20d001..c8cccb7ead 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=6.2.1-SNAPSHOT +VERSION_NAME=6.3.0 GROUP=com.airbnb.android POM_DESCRIPTION=Lottie is an animation library that renders Adobe After Effects animations natively in realtime.