diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9e19f348..9da27879 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,7 @@
## Unreleased
+## 2.7.2 (May 24, 2016)
+
* Add documentation for SDK functions. You can take a look [here](https://rawgit.com/amplitude/Amplitude-Android/master/javadoc/index.html). A link has also been added to the Readme.
* Fix bug where fetching the user's location on select devices throws a SecurityException, causing a crash.
diff --git a/README.md b/README.md
index f9583359..4b214033 100644
--- a/README.md
+++ b/README.md
@@ -12,22 +12,22 @@ See our [SDK documentation](https://rawgit.com/amplitude/Amplitude-Android/maste
# Setup #
1. If you haven't already, go to https://amplitude.com/signup and register for an account. Then, add an app. You will receive an API Key.
-2. [Download the jar](https://github.com/amplitude/Amplitude-Android/raw/master/amplitude-android-2.7.1-with-dependencies.jar) and copy it into the "libs" folder in your Android project in Android Studio.
+2. [Download the jar](https://github.com/amplitude/Amplitude-Android/raw/master/amplitude-android-2.7.2-with-dependencies.jar) and copy it into the "libs" folder in your Android project in Android Studio.
- Alternatively, if you are using Maven in your project, the jar is available on [Maven Central](http://search.maven.org/#artifactdetails%7Ccom.amplitude%7Candroid-sdk%7C2.7.1%7Cjar) using the following configuration in your pom.xml:
+ Alternatively, if you are using Maven in your project, the jar is available on [Maven Central](http://search.maven.org/#artifactdetails%7Ccom.amplitude%7Candroid-sdk%7C2.7.2%7Cjar) using the following configuration in your pom.xml:
```
com.amplitude
android-sdk
- 2.7.1
+ 2.7.2
```
Or if you are using gradle in your project, include in your build.gradle file:
```
- compile 'com.amplitude:android-sdk:2.7.1'
+ compile 'com.amplitude:android-sdk:2.7.2'
```
3. If you haven't already, add the [INTERNET](https://developer.android.com/reference/android/Manifest.permission.html#INTERNET) permission to your manifest file:
diff --git a/amplitude-android-2.7.1.jar b/amplitude-android-2.7.1.jar
deleted file mode 100644
index 5e3891d9..00000000
Binary files a/amplitude-android-2.7.1.jar and /dev/null differ
diff --git a/amplitude-android-2.7.1-with-dependencies.jar b/amplitude-android-2.7.2-with-dependencies.jar
similarity index 84%
rename from amplitude-android-2.7.1-with-dependencies.jar
rename to amplitude-android-2.7.2-with-dependencies.jar
index 594eefb7..bdd42afc 100644
Binary files a/amplitude-android-2.7.1-with-dependencies.jar and b/amplitude-android-2.7.2-with-dependencies.jar differ
diff --git a/amplitude-android-2.7.2.jar b/amplitude-android-2.7.2.jar
new file mode 100644
index 00000000..031a463b
Binary files /dev/null and b/amplitude-android-2.7.2.jar differ
diff --git a/amplitude-unity-2.7.1.jar b/amplitude-unity-2.7.2.jar
similarity index 79%
rename from amplitude-unity-2.7.1.jar
rename to amplitude-unity-2.7.2.jar
index 8b4937c3..f331774b 100644
Binary files a/amplitude-unity-2.7.1.jar and b/amplitude-unity-2.7.2.jar differ
diff --git a/build.xml b/build.xml
index caf9daa9..fddab008 100644
--- a/build.xml
+++ b/build.xml
@@ -20,7 +20,7 @@
-
+
diff --git a/pom.xml b/pom.xml
index c9680a3a..87ddf033 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2,7 +2,7 @@
4.0.0
com.amplitude
android-sdk
- 2.7.1
+ 2.7.2
jar
Amplitude Android SDK
diff --git a/src/com/amplitude/api/Constants.java b/src/com/amplitude/api/Constants.java
index bd64c4cf..8653c1fc 100644
--- a/src/com/amplitude/api/Constants.java
+++ b/src/com/amplitude/api/Constants.java
@@ -4,7 +4,7 @@ public class Constants {
public static final String LIBRARY = "amplitude-android";
public static final String PLATFORM = "Android";
- public static final String VERSION = "2.7.1";
+ public static final String VERSION = "2.7.2";
public static final String EVENT_LOG_URL = "https://api.amplitude.com/";