v2.2.4
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1ec25ea..8678a4b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
 # 2.2.3 
 ### Bugs Fixed
+* Improved the reliability of scaling and using ImageView scale types.
+* Fixes a clipping issue with precomps.
+* Fixes an ArrayIndexOutOfBounds crash in the interpolator cache.
+
+# 2.2.3
+### Bugs Fixed
 * Fixed some issues with progress and resume
 * Fixed a StackOverflowErrors when animations are disabled
 * Fixed a NPE in Keyframe.Factory
diff --git a/LottieSample/build.gradle b/LottieSample/build.gradle
index 0b1079b..d27d8bf 100644
--- a/LottieSample/build.gradle
+++ b/LottieSample/build.gradle
@@ -11,7 +11,7 @@
     minSdkVersion 16
     targetSdkVersion 26
     versionCode 21
-    versionName "2.2.3"
+    versionName "2.2.4"
     testInstrumentationRunner "com.airbnb.lottie.TestRunner"
     vectorDrawables.useSupportLibrary = true
   }
diff --git a/LottieSample/src/main/res/layout/fragment_animation.xml b/LottieSample/src/main/res/layout/fragment_animation.xml
index d453139..c05fcb6 100644
--- a/LottieSample/src/main/res/layout/fragment_animation.xml
+++ b/LottieSample/src/main/res/layout/fragment_animation.xml
@@ -301,7 +301,7 @@
             android:layout_height="wrap_content"
             android:layout_gravity="center_horizontal"
             android:layout_marginBottom="8dp"
-            android:text="2.2.3"
+            android:text="2.2.4"
             android:textColor="@android:color/black"
             android:textSize="8sp"/>
 
diff --git a/README.md b/README.md
index bacddf6..d6abbef 100644
--- a/README.md
+++ b/README.md
@@ -35,6 +35,6 @@
 
 ```groovy
 dependencies {  
-  compile 'com.airbnb.android:lottie:2.2.3'
+  compile 'com.airbnb.android:lottie:2.2.4'
 }
 ```
diff --git a/gradle.properties b/gradle.properties
index bd3a91a..480b3cd 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=2.2.3
+VERSION_NAME=2.2.4
 GROUP=com.airbnb.android
 
 POM_DESCRIPTION=Lottie is an animation library that renders Adobe After Effects animations natively in realtime.