Skip to content

Commit 579487d

Browse files
committed
Release v1.11.0
1 parent b94905d commit 579487d

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

maven-push.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,9 @@ afterEvaluate { project ->
9898
android.libraryVariants.all { variant ->
9999
if (variant.name == 'release') {
100100
owner.classpath += variant.javaCompiler.classpath
101+
if (JavaVersion.current().isJava8Compatible()) {
102+
options.addStringOption('Xdoclint:none', '-quiet')
103+
}
101104
}
102105
}
103106
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))

xlog-libcat/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ android {
4040
}
4141

4242
dependencies {
43-
api 'com.elvishew:xlog:1.9.0'
43+
api 'com.elvishew:xlog:1.11.0'
4444
api 'org.aspectj:aspectjrt:1.9.5'
4545
}

xlog-sample/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ aspectjx {
4141
}
4242

4343
dependencies {
44-
implementation 'com.elvishew:xlog:1.9.0'
44+
implementation 'com.elvishew:xlog:1.11.0'
4545
implementation 'com.elvishew:xlog-libcat:1.0.0'
4646
implementation fileTree(dir: 'libs', include: ['*.jar'])
4747
implementation 'com.google.android.material:material:1.3.0-alpha02'

xlog/gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ POM_ARTIFACT_ID=xlog
33
POM_PACKAGING=jar
44
POM_DESCRIPTION=Android logger, pretty, powerful and flexible, logging to file and everywhere
55

6-
VERSION_NAME=1.10.1
7-
VERSION_CODE=18
6+
VERSION_NAME=1.11.0
7+
VERSION_CODE=19

0 commit comments

Comments
 (0)