v2.5.0-beta1
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 95fa358..a76bf65 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,13 @@
+# 2.5.0-beta1
+### Features and Improvements
+* Added the ability to dynamically change properties at runtime. See [docs](http://airbnb
+.io/lottie/android/dynamic.html) for more info.
+* Added a setRepeatMode and setRepeatCount (Thanks Fabio Nuno!).
+### Bugs Fixed
+* Fixed a bug when an opacity animation time interpolator was >1.
+* 
+
+
 # 2.3.1
 ### Features and Improvements
 * Expose `LottieComposition#getImages()` to aid in preloading images.
diff --git a/LottieSample/build.gradle b/LottieSample/build.gradle
index 4a1ad9e..6fd5810 100644
--- a/LottieSample/build.gradle
+++ b/LottieSample/build.gradle
@@ -9,8 +9,8 @@
     applicationId "com.airbnb.lottie"
     minSdkVersion 16
     targetSdkVersion 27
-    versionCode 28
-    versionName "2.3.2-SNAPSHOT"
+    versionCode 29
+    versionName "2.5.0-beta1"
     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 0ef7b80..cf9f9d6 100644
--- a/README.md
+++ b/README.md
@@ -35,6 +35,6 @@
 
 ```groovy
 dependencies {
-  compile 'com.airbnb.android:lottie:2.3.2-SNAPSHOT'
+  compile 'com.airbnb.android:lottie:2.5.0-beta1'
 }
 ```
diff --git a/gradle.properties b/gradle.properties
index ac45b73..787db5b 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.3.2-SNAPSHOT
+VERSION_NAME=2.5.0-beta1
 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 501dc57..2c6456a 100644
--- a/lottie/build.gradle
+++ b/lottie/build.gradle
@@ -10,7 +10,7 @@
     minSdkVersion 14
     targetSdkVersion 27
     versionCode 100
-    versionName "2.3.2-SNAPSHOT"
+    versionName "2.5.0-beta1"
   }
   lintOptions {
     abortOnError true