Skip to content

Commit 1be44b3

Browse files
committed
Prepare 1.5.1 release
1 parent c89b926 commit 1be44b3

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

CHANGELOG.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change Log
22

3+
## Version 1.5.1 *(2017-04-25)*
4+
5+
* New excluded leaks
6+
* Fix java.util.MissingFormatArgumentException in DisplayLeakService
7+
* Separate task affinities for different apps
8+
* Bump minSdk to 14
9+
* Fix HahaHelper for O Preview
10+
11+
For more details, see the [full diff](https://github.com/square/leakcanary/compare/v1.5...v1.5.1).
12+
313
## Version 1.5 *(2016-09-28)*
414

515
* New excluded leaks
@@ -10,8 +20,9 @@
1020
* Leak notifications now each use a distinct notification instead of erasing each other.
1121
* If LeakCanary can't perform a heap dump for any reason (e.g. analysis in progress, debugger attached), it retries later with an exponential backoff.
1222
* Added confirmation dialog when user deletes all leaks.
13-
* Replace the two leakcanary configuration methods with a builder that provides more flexibility, see `LeakCanary.refWatcher()`.
14-
* For more details, see the [full diff](https://github.com/square/leakcanary/compare/v1.4...v1.5).
23+
* Replace the two LeakCanary configuration methods with a builder that provides more flexibility, see `LeakCanary.refWatcher()`.
24+
25+
For more details, see the [full diff](https://github.com/square/leakcanary/compare/v1.4...v1.5).
1526

1627
### Public API changes
1728

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
# LeakCanary
23

34
A memory leak detection library for Android and Java.
@@ -12,9 +13,9 @@ In your `build.gradle`:
1213

1314
```gradle
1415
dependencies {
15-
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.5'
16-
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5'
17-
testCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5'
16+
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.5.1'
17+
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.1'
18+
testCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.1'
1819
}
1920
```
2021

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ ext {
4545
javaVersion = JavaVersion.VERSION_1_7
4646

4747
GROUP = 'com.squareup.leakcanary'
48-
VERSION_NAME = "1.6-SNAPSHOT"
48+
VERSION_NAME = "1.5.1"
4949
POM_PACKAGING = "pom"
5050
POM_DESCRIPTION= "Leak Canary"
5151

0 commit comments

Comments
 (0)