File tree Expand file tree Collapse file tree
hugo-plugin/src/main/groovy/hugo/weaving/plugin Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11Change Log
22==========
33
4- Version 1.2.0 * (In Development )*
5- --------------------------------
4+ Version 1.2.0 * (2015-02-12 )*
5+ ----------------------------
66
77 * Plugin ID is now 'com.jakewharton.hugo' (instead of just 'hugo').
8- * Log at the verbose level.
8+ * Support annotating entire classes with ` @DebugLog ` .
9+ * Include thread names for non-main threads in the log.
910 * Lower the minimum supported runtime to API 7. Woooo Eclair!
11+ * Log using verbose level.
12+ * Fix: Escape unprintable characters.
13+ * Fix: Eliminate intermittent VerifyError occurrences.
1014
1115
1216Version 1.1.0 * (2014-04-05)*
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ buildscript {
3535 }
3636
3737 dependencies {
38- classpath 'com.jakewharton.hugo:hugo-plugin:1.1 .0'
38+ classpath 'com.jakewharton.hugo:hugo-plugin:1.2 .0'
3939 }
4040}
4141
Original file line number Diff line number Diff line change 1- VERSION_NAME =1.2.0-SNAPSHOT
1+ VERSION_NAME =1.2.0
22GROUP =com.jakewharton.hugo
33
44POM_DESCRIPTION =Annotation-triggered method call logging for your debug builds.
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ buildscript {
88 }
99
1010 classpath ' com.android.tools.build:gradle:1.1.0-rc3'
11- classpath ' com.jakewharton.hugo:hugo-plugin:1.2.0-SNAPSHOT '
11+ classpath ' com.jakewharton.hugo:hugo-plugin:1.2.0'
1212 }
1313}
1414
Original file line number Diff line number Diff line change @@ -26,10 +26,10 @@ class HugoPlugin implements Plugin<Project> {
2626 }
2727
2828 project. dependencies {
29- debugCompile ' com.jakewharton.hugo:hugo-runtime:1.2.0-SNAPSHOT '
29+ debugCompile ' com.jakewharton.hugo:hugo-runtime:1.2.0'
3030 // TODO this should come transitively
3131 debugCompile ' org.aspectj:aspectjrt:1.8.5'
32- compile ' com.jakewharton.hugo:hugo-annotations:1.2.0-SNAPSHOT '
32+ compile ' com.jakewharton.hugo:hugo-annotations:1.2.0'
3333 }
3434
3535 variants. all { variant ->
You can’t perform that action at this time.
0 commit comments