Skip to content

Commit f678025

Browse files
committed
Prepare version 1.2.0.
1 parent 73c25f4 commit f678025

5 files changed

Lines changed: 12 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
Change 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

1216
Version 1.1.0 *(2014-04-05)*

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=1.2.0-SNAPSHOT
1+
VERSION_NAME=1.2.0
22
GROUP=com.jakewharton.hugo
33

44
POM_DESCRIPTION=Annotation-triggered method call logging for your debug builds.

hugo-example/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

hugo-plugin/src/main/groovy/hugo/weaving/plugin/HugoPlugin.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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 ->

0 commit comments

Comments
 (0)