v2.5.0
diff --git a/CHANGELOG.md b/CHANGELOG.md
index dc73818..4ca43a6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,8 @@
 # 2.5.0
 * Added the ability to dynamically change properties at runtime. See [docs](http://airbnb
 .io/lottie/android/dynamic.html) for more info. This feature removed the existing APIs for
-changing the color dynamically with a color filter. Refer to the docs for migration info.
+changing the color dynamically with a color filter. Refer to the docs for migration info from 
+existing ColorFilter APIs.
 * Added a setRepeatMode and setRepeatCount (Thanks Fabio Nuno!).
 * Completely overhauled json deserialization. Deserializing a composition takes half as long and
 can deserialize much larger json files (tested 50mb) without ooming.
diff --git a/LottieSample/build.gradle b/LottieSample/build.gradle
index a847513..965b489 100644
--- a/LottieSample/build.gradle
+++ b/LottieSample/build.gradle
@@ -9,8 +9,8 @@
     applicationId "com.airbnb.lottie"
     minSdkVersion 16
     targetSdkVersion 27
-    versionCode 33
-    versionName "2.5.0-rc2"
+    versionCode 34
+    versionName "2.5.0"
     testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
     vectorDrawables.useSupportLibrary = true
     buildConfigField("String", "S3AccessKey", "\"" + System.getenv("LOTTIE_S3_API_KEY") + "\"")
diff --git a/README.md b/README.md
index afcd21b..2632199 100644
--- a/README.md
+++ b/README.md
@@ -35,6 +35,6 @@
 
 ```groovy
 dependencies {
-  compile 'com.airbnb.android:lottie:2.5.0-rc2'
+  compile 'com.airbnb.android:lottie:2.5.0'
 }
 ```
diff --git a/gradle.properties b/gradle.properties
index 365d77c..3f1b787 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.5.0-rc2
+VERSION_NAME=2.5.0
 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 de619a4..9cbe1ed 100644
--- a/lottie/build.gradle
+++ b/lottie/build.gradle
@@ -10,7 +10,7 @@
     minSdkVersion 16
     targetSdkVersion 27
     versionCode 100
-    versionName "2.5.0-rc2"
+    versionName "2.5.0"
   }
   lintOptions {
     abortOnError true