Merge pull request #814 from square/1.5.2

Prepare 1.5.2 release
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0067d7e..1133354 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,16 @@
 # Change Log
 
+## Version 1.5.2 *(2017-08-09)*
+
+* New excluded leaks
+* Move Leakcanary UI into leak analyzer process
+* Ignore computing retained sizes for bitmaps on O+
+* Add notification channel for persistent messages on O+
+* Exclude permission activity from recents menu
+* Updated README and sample for handling Robolectric tests
+
+For more details, see the [full diff](https://github.com/square/leakcanary/compare/v1.5.1...v1.5.2).
+
 ## Version 1.5.1 *(2017-04-25)*
 
 * New excluded leaks
diff --git a/README.md b/README.md
index 09222a4..0d25550 100644
--- a/README.md
+++ b/README.md
@@ -15,8 +15,8 @@
 
 ```gradle
  dependencies {
-   debugCompile 'com.squareup.leakcanary:leakcanary-android:1.5.1'
-   releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.1'
+   debugCompile 'com.squareup.leakcanary:leakcanary-android:1.5.2'
+   releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.2'
  }
 ```
 
diff --git a/build.gradle b/build.gradle
index cbd24b8..2e0b8f2 100644
--- a/build.gradle
+++ b/build.gradle
@@ -46,7 +46,7 @@
   javaVersion = JavaVersion.VERSION_1_7
 
   GROUP = 'com.squareup.leakcanary'
-  VERSION_NAME = "1.6-SNAPSHOT"
+  VERSION_NAME = "1.5.2"
   POM_PACKAGING = "pom"
   POM_DESCRIPTION= "Leak Canary"