From 431ed78f886513dc6166b2b5ae33b365a3e692c2 Mon Sep 17 00:00:00 2001 From: John Rodriguez Date: Thu, 24 Mar 2016 11:21:30 -0700 Subject: [PATCH] Prepare 1.4-beta2 release --- CHANGELOG.md | 17 +++++++++++++++-- README.md | 6 +++--- build.gradle | 2 +- 3 files changed, 19 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 064b12c7b3..a96df82714 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,10 +32,23 @@ Snapshots are available in Sonatype's `snapshots` repository: [![Build Status](https://travis-ci.org/square/leakcanary.svg?branch=master)](https://travis-ci.org/square/leakcanary) +# Change Log -## Version 1.4-beta1 *(2016-01-08)* +All changes in 1.4+ are [tracked here](https://github.com/square/leakcanary/pulls?utf8=%E2%9C%93&q=milestone%3A1.4+is%3Apr). + +## Version 1.4-beta2 *(2016-03-23)* -All actual changes are [tracked here](https://github.com/square/leakcanary/pulls?utf8=%E2%9C%93&q=milestone%3A1.4+is%3Apr). +* Add reason for ignoring to analysis result [#365](https://github.com/square/leakcanary/issues/365). +* Lower memory usage when parsing heap dumps on M [#223](https://github.com/square/leakcanary/issues/223). +* Fix NPE in LeakCanaryInternals.isInServiceProcess() [#449](https://github.com/square/leakcanary/issues/449). +* New ignored Android SDK leaks [#297](https://github.com/square/leakcanary/issues/297),[#322](https://github.com/square/leakcanary/issues/322). +* Use leakcanary-android-no-op in test builds [#143](https://github.com/square/leakcanary/issues/143). +* Fixes to allow LeakCanary to work with ProGuard [#398](https://github.com/square/leakcanary/pull/398). +* Optimize png assets [#406](https://github.com/square/leakcanary/pull/406). +* Fix delete button not working on error views [#408](https://github.com/square/leakcanary/pull/408). +* Add German translation [#437](https://github.com/square/leakcanary/pull/437). + +## Version 1.4-beta1 *(2016-01-08)* * Switched to [HAHA 2.0.2](https://github.com/square/haha/blob/master/CHANGELOG.md#version-202-2015-07-20) with uses Perflib instead of MAT under the hood [#219](https://github.com/square/leakcanary/pull/219). This fixes crashes and improves speed a lot. * We can now parse Android M heap dumps [#267](https://github.com/square/leakcanary/issues/267), although there are still memory issues (see [#223](https://github.com/square/leakcanary/issues/223)). diff --git a/README.md b/README.md index bdd4a7f703..61e7b5b12a 100644 --- a/README.md +++ b/README.md @@ -12,9 +12,9 @@ In your `build.gradle`: ```gradle dependencies { - debugCompile 'com.squareup.leakcanary:leakcanary-android:1.3.1' // or 1.4-beta1 - releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.3.1' // or 1.4-beta1 - testCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.3.1' // or 1.4-beta1 + debugCompile 'com.squareup.leakcanary:leakcanary-android:1.3.1' // or 1.4-beta2 + releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.3.1' // or 1.4-beta2 + testCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.3.1' // or 1.4-beta2 } ``` diff --git a/build.gradle b/build.gradle index b0568c4097..d750225d6b 100644 --- a/build.gradle +++ b/build.gradle @@ -26,7 +26,7 @@ ext { javaVersion = JavaVersion.VERSION_1_7 GROUP = 'com.squareup.leakcanary' - VERSION_NAME = "1.4-SNAPSHOT" + VERSION_NAME = "1.4-beta2" POM_PACKAGING = "pom" POM_DESCRIPTION= "Leak Canary"