Skip to content

Commit

Permalink
lottie-3.5.0 and lottie-compose-1.0.0-alpha01
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Peal committed Nov 9, 2020
1 parent c5261b8 commit 97286e3
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 3 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# 3.5.0
### Features and Improvements
* Added a new global configuration to add a custom network stack, custom network cache, enable systrace markers, and more ([#1629](https://github.com/airbnb/lottie-android/pull/1629))
* Initial implementation of Lottie Compose (not yet released)

* To use it, checkout the docs for `Lottie.initialize` and `LottieConfig.Builder`.
* Add support for parsing dotLottie files ([#1660](https://github.com/airbnb/lottie-android/pull/1660))
* Added support for pause listeners on `LottieDrawable` and `LottieAnimationView` ([#1662](https://github.com/airbnb/lottie-android/pull/1662))
### Bugs Fixed
* Properly cache animations loaded via url in memory ([#1657](https://github.com/airbnb/lottie-android/pull/1657))

# 3.4.4
### Bugs Fixed
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG_COMPOSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# 1.0.0-alpha01
* Initial release of Lottie Compose
* Compatible with Jetpack Compose alpha 6
* Built with Lottie 3.5.0
* Wraps the existing renderer with Jetpack Compose friendly APIs.
* For up to date docs on how to use it, check out the [docs](http://airbnb.io/lottie/#/android-compose).
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

VERSION_NAME=3.4.5-SNAPSHOT
VERSION_NAME=3.5.0
GROUP=com.airbnb.android

POM_DESCRIPTION=Lottie is an animation library that renders Adobe After Effects animations natively in realtime.
Expand Down
1 change: 1 addition & 0 deletions lottie-compose/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ plugins {
id 'com.android.library'
id 'kotlin-android'
}
apply from: 'gradle-maven-push.gradle'

android {
compileSdkVersion 30
Expand Down
2 changes: 1 addition & 1 deletion lottie-compose/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ POM_NAME=Lottie Compose
POM_ARTIFACT_ID=lottie-compose
POM_PACKAGING=aar
GROUP=com.airbnb.android
VERSION_NAME=1.0.0-dev01-SNAPSHOT
VERSION_NAME=1.0.0-alpha01
2 changes: 2 additions & 0 deletions upload_release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/bash
./gradlew clean lottie:assembleRelease lottie-compose:assembleRelease lottie:uploadArchives lottie-compose:uploadArchives --rerun-tasks --no-parallel

0 comments on commit 97286e3

Please sign in to comment.