Skip to content

Commit

Permalink
Release v1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
elvishew committed Jul 11, 2021
1 parent b94905d commit 579487d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions maven-push.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,9 @@ afterEvaluate { project ->
android.libraryVariants.all { variant ->
if (variant.name == 'release') {
owner.classpath += variant.javaCompiler.classpath
if (JavaVersion.current().isJava8Compatible()) {
options.addStringOption('Xdoclint:none', '-quiet')
}
}
}
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
Expand Down
2 changes: 1 addition & 1 deletion xlog-libcat/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ android {
}

dependencies {
api 'com.elvishew:xlog:1.9.0'
api 'com.elvishew:xlog:1.11.0'
api 'org.aspectj:aspectjrt:1.9.5'
}
2 changes: 1 addition & 1 deletion xlog-sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ aspectjx {
}

dependencies {
implementation 'com.elvishew:xlog:1.9.0'
implementation 'com.elvishew:xlog:1.11.0'
implementation 'com.elvishew:xlog-libcat:1.0.0'
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.google.android.material:material:1.3.0-alpha02'
Expand Down
4 changes: 2 additions & 2 deletions xlog/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ POM_ARTIFACT_ID=xlog
POM_PACKAGING=jar
POM_DESCRIPTION=Android logger, pretty, powerful and flexible, logging to file and everywhere

VERSION_NAME=1.10.1
VERSION_CODE=18
VERSION_NAME=1.11.0
VERSION_CODE=19

0 comments on commit 579487d

Please sign in to comment.