Updated changelog and bumped version to 5.3.0-SNAPSHOT
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6a44941..cb678eb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,21 @@
+# 5.3.0
+### New Features
+* Allow animations in zip files to contain embedded base64 encoded images ([#2110](https://github.com/airbnb/lottie-android/pull/2110))
+* Allow zip files to contain embedded fonts. Context was added to some LottieCompositionFactory APIs to support this ([#2102](https://github.com/airbnb/lottie-android/pull/2102))
+* Add fontStyle and fontName as parameters in new overloads in FontAssetDelegate ([#2103](https://github.com/airbnb/lottie-android/pull/2103))
+* Allow decimal values for precomp size ([#2138](https://github.com/airbnb/lottie-android/pull/2138))
+* Allow interpolating in between gradeients that have different numbers of opacity stops ([#2160](https://github.com/airbnb/lottie-android/pull/2160))
+* Support box position in document data ([#2139](https://github.com/airbnb/lottie-android/pull/2139))
+* Allow repeater contents to be the target of dynamic properties ([#2164](https://github.com/airbnb/lottie-android/pull/2164))
+* Provide a global LottieTask listener to aid in Espresso idle resources ([#2161](https://github.com/airbnb/lottie-android/pull/2161))
+* Allow setting a default font extension ([#2166](https://github.com/airbnb/lottie-android/pull/2166))
+* Add an option to completely disable Lottie's network cache ([#2158](https://github.com/airbnb/lottie-android/pull/2158))
+### Bugs Fixed
+* Fixed an NPE when decoding an invalid bitmap ([#2117](https://github.com/airbnb/lottie-android/pull/2117))
+* Only store application context in ImageAssetManager ([#2163](https://github.com/airbnb/lottie-android/pull/2163))
+* Prevent rounded corner effects from trying to round a shape that has control points on its vertices already ([#2165](https://github.com/airbnb/lottie-android/pull/2165))
+* Pass LottieComposition directly while building layers to avoid race conditions ([#2167](https://github.com/airbnb/lottie-android/pull/2167))
+
 # 5.2.0
 ### Bugs Fixed
 * De-dupe gradient stops. On pre-Oreo devices, if you had color and opacity stops in the same place and used hardware acceleration, you may have seen artifacts at the stop positions as of 5.1.1 [#20814](https://github.com/airbnb/lottie-android/pull/2081)
diff --git a/CHANGELOG_COMPOSE.md b/CHANGELOG_COMPOSE.md
index 22d5cdc..4fbc587 100644
--- a/CHANGELOG_COMPOSE.md
+++ b/CHANGELOG_COMPOSE.md
@@ -1,3 +1,6 @@
+###5.3.0
+* Add reverseOnRepeat ([#2128](https://github.com/airbnb/lottie-android/pull/2128))
+
 # 5.2.0
 * [BREAKING CHANGE]
 LottieAnimation now takes progress as a `() -> Float` rather than a `Float`. This allows Lottie to redraw without triggering a recomposition every time progress updates. For more information, refer to the Compose [phase docs](https://developer.android.com/jetpack/compose/phases). The existing API will exist as deprecated for one more release but will then be removed. For the vast majority of use cases:
diff --git a/gradle.properties b/gradle.properties
index 415b7ac..e79fd40 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,4 +1,4 @@
-VERSION_NAME=5.2.1-SNAPSHOT
+VERSION_NAME=5.3.0-SNAPSHOT
 GROUP=com.airbnb.android
 
 POM_DESCRIPTION=Lottie is an animation library that renders Adobe After Effects animations natively in realtime.