Skip to content

Commit 6b04880

Browse files
committed
Prepare 1.4 release
1 parent 61f8fce commit 6b04880

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
# Change Log
22

3-
All changes in 1.4+ are [tracked here](https://github.com/square/leakcanary/pulls?utf8=%E2%9C%93&q=milestone%3A1.4+is%3Apr).
3+
## Version 1.4 *(2016-09-11)*
4+
5+
* Fix false negative where GC root is of type android.os.Binder [#482](https://github.com/square/leakcanary/issues/482)
6+
* Update HAHA to 2.0.3; clear compiler warnings [#563](https://github.com/square/leakcanary/issues/563)
7+
* Correct some mistakes in German translation [#516](https://github.com/square/leakcanary/pull/516)
8+
* Don't loop when storage permission denied [#422](https://github.com/square/leakcanary/issues/422)
9+
* Remove old references to "__" prefixed resources [#477](https://github.com/square/leakcanary/pull/477)
10+
* Fix permission crash for DisplayLeakActivity on M [#382](https://github.com/square/leakcanary/issues/382)
11+
* Fix NPE when thread name not found in heap dump [#417](https://github.com/square/leakcanary/issues/417)
12+
* Add version info to stacktrace [#473](https://github.com/square/leakcanary/issues/473)
413

514
## Version 1.4-beta2 *(2016-03-23)*
615

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ In your `build.gradle`:
1212

1313
```gradle
1414
dependencies {
15-
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.4-beta2'
16-
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.4-beta2'
17-
testCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.4-beta2'
15+
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.4'
16+
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.4'
17+
testCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.4'
1818
}
1919
```
2020

build.gradle

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

2727
GROUP = 'com.squareup.leakcanary'
28-
VERSION_NAME = "1.4-SNAPSHOT"
28+
VERSION_NAME = "1.4"
2929
POM_PACKAGING = "pom"
3030
POM_DESCRIPTION= "Leak Canary"
3131

0 commit comments

Comments
 (0)