File tree Expand file tree Collapse file tree 3 files changed +18
-6
lines changed Expand file tree Collapse file tree 3 files changed +18
-6
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
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
+
3
13
## Version 1.5 * (2016-09-28)*
4
14
5
15
* New excluded leaks
10
20
* Leak notifications now each use a distinct notification instead of erasing each other.
11
21
* 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.
12
22
* 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 ) .
15
26
16
27
### Public API changes
17
28
Original file line number Diff line number Diff line change
1
+
1
2
# LeakCanary
2
3
3
4
A memory leak detection library for Android and Java.
@@ -12,9 +13,9 @@ In your `build.gradle`:
12
13
13
14
``` gradle
14
15
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 '
18
19
}
19
20
```
20
21
Original file line number Diff line number Diff line change 45
45
javaVersion = JavaVersion . VERSION_1_7
46
46
47
47
GROUP = ' com.squareup.leakcanary'
48
- VERSION_NAME = " 1.6-SNAPSHOT "
48
+ VERSION_NAME = " 1.5.1 "
49
49
POM_PACKAGING = " pom"
50
50
POM_DESCRIPTION = " Leak Canary"
51
51
You can’t perform that action at this time.
0 commit comments