Skip to content

Commit 31007b4

Browse files
committed
Prepare 1.6.3 release
1 parent 64b6e5a commit 31007b4

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,20 @@
22

33
## Future release
44

5+
## Version 1.6.3 (2019-01-10)
6+
57
* [#1163](https://github.com/square/leakcanary/issues/1163) Fixed leaks being incorrectly classified as "no leak" due to missed GC Roots.
68
* [#1153](https://github.com/square/leakcanary/issues/1153) `LeakCanary.isInAnalyzerProcess` now correctly returns true in the analyzer process prior to any first leak (could be triggered by starting the leak result activity).
79
* [#1158](https://github.com/square/leakcanary/issues/1158) Stopped enabling DisplayLeakActivity when not using DisplayLeakService.
810
* [#1135](https://github.com/square/leakcanary/issues/1135) Fixed IndexOutOfBoundsException for leak traces of size 1.
911
* [#1163](https://github.com/square/leakcanary/issues/1163) Keep "no leak" heap dumps
1012

13+
Many thanks to
14+
[@KMaragh](https://github.com/KMaragh),
15+
[@pyricau](https://github.com/pyricau),
16+
[@SebRut](https://github.com/SebRut)
17+
for the code contributions!
18+
1119
## Version 1.6.2 (2018-10-16)
1220

1321
* [#1067](https://github.com/square/leakcanary/issues/1067) Fixed TransactionTooLargeException crash (leak analysis would never complete).

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ In your `build.gradle`:
1515

1616
```groovy
1717
dependencies {
18-
debugImplementation 'com.squareup.leakcanary:leakcanary-android:1.6.2'
19-
releaseImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.6.2'
18+
debugImplementation 'com.squareup.leakcanary:leakcanary-android:1.6.3'
19+
releaseImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.6.3'
2020
// Optional, if you use support library fragments:
21-
debugImplementation 'com.squareup.leakcanary:leakcanary-support-fragment:1.6.2'
21+
debugImplementation 'com.squareup.leakcanary:leakcanary-support-fragment:1.6.3'
2222
}
2323
```
2424

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.squareup.leakcanary
2-
VERSION_NAME=1.7-SNAPSHOT
2+
VERSION_NAME=1.6.3
33

44
POM_DESCRIPTION=Leak Canary
55

0 commit comments

Comments
 (0)