v3.0.0-beta2
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ba23304..7a1ef32 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,18 @@
 ### Features and Improvements
 * Added support for skew and skew angle in transforms.
 * Added support for markers. You can now call `setMinFrame`, `setMaxFrame` and `setMinAndMaxFrame` with a marker name.
+* Added support for skew and skew angle transforms.
+* Added support for a future Bodymovin plugin that will omit duplicated vertex out points to reduce json file size.
+* Allowed multiple trim paths to be applied on a shape.
+### Bugs Fixed
+* Fixed an IndexOutOfBoundsException.
+* Preventded the cache from returning null values after a key was cleared.
+* Pause Lottie in onVisibilityChanged.
+* Properly limited the LRU cache an enable its maximum size to be configured.
+* Properly closed JsonReader in all cases.
+* Fixed text alignment for scaled text when drawn using fonts.
+* Use FutureTask rather than polling for composition parsing to complete.
+* [Sample App] Fixed Lottiefiles integration.
 
 # 3.0.0-beta1
 ### Features and Improvements
diff --git a/LottieSample/build.gradle b/LottieSample/build.gradle
index f159cbd..c6452f4 100644
--- a/LottieSample/build.gradle
+++ b/LottieSample/build.gradle
@@ -13,7 +13,7 @@
     minSdkVersion 16
     targetSdkVersion 28
     versionCode 67
-    versionName "2.8.0"
+    versionName VERSION_NAME
     multiDexEnabled true
     testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
     vectorDrawables.useSupportLibrary = true
diff --git a/gradle.properties b/gradle.properties
index f539176..e1a7bb9 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -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.0.0-beta1
+VERSION_NAME=3.0.0-beta2
 GROUP=com.airbnb.android
 
 POM_DESCRIPTION=Lottie is an animation library that renders Adobe After Effects animations natively in realtime.
diff --git a/lottie/build.gradle b/lottie/build.gradle
index 597ab1c..7b45e1b 100644
--- a/lottie/build.gradle
+++ b/lottie/build.gradle
@@ -8,8 +8,6 @@
   defaultConfig {
     minSdkVersion 16
     targetSdkVersion 28
-    versionCode 100
-    versionName "2.8.0"
   }
   lintOptions {
     abortOnError true