Bumped version to 2.1.2
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 148b106..7c8dea8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,11 @@
+# 2.1.2
+### Bugs Fixed
+* Reduced memory footprint.
+* Allowed animations with masks and mattes to scale larger than their view.
+* Respect hardware acceleration when async loading a composition.
+* Fixed a gradient point counting issue.
+* Fixed a trim path issue.
+
 # 2.1.0
 ### Features and Improvements
 * Added support for animated text (glyphs and fonts)
diff --git a/LottieSample/build.gradle b/LottieSample/build.gradle
index a8cc29d..cccd5ac 100644
--- a/LottieSample/build.gradle
+++ b/LottieSample/build.gradle
@@ -10,8 +10,8 @@
     applicationId "com.airbnb.lottie"
     minSdkVersion 16
     targetSdkVersion 25
-    versionCode 15
-    versionName "2.1.1"
+    versionCode 16
+    versionName "2.1.2"
     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 6003520..24cc8e5 100644
--- a/LottieSample/src/main/res/layout/fragment_animation.xml
+++ b/LottieSample/src/main/res/layout/fragment_animation.xml
@@ -286,7 +286,7 @@
             android:layout_height="wrap_content"
             android:layout_gravity="center_horizontal"
             android:layout_marginBottom="8dp"
-            android:text="2.1.0"
+            android:text="2.1.2"
             android:textColor="@android:color/black"
             android:textSize="8sp"/>
 
diff --git a/README.md b/README.md
index b034996..6d10f28 100644
--- a/README.md
+++ b/README.md
@@ -47,7 +47,7 @@
 
 ```groovy
 dependencies {  
-  compile 'com.airbnb.android:lottie:2.1.0'
+  compile 'com.airbnb.android:lottie:2.1.2'
 }
 ```
 
diff --git a/gradle.properties b/gradle.properties
index 9f03763..9d2757a 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.1.0
+VERSION_NAME=2.1.2
 GROUP=com.airbnb.android
 
 POM_DESCRIPTION=Lottie is an animation library that renders Adobe After Effects animations natively in realtime.