diff --git a/CHANGELOG.md b/CHANGELOG.md index ecd3b4d..9711b0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,10 @@ # Change Log +### Version 0.1.8 +- improve compatibility +- optimize hook proguard +- add checkIncrementalInDebug +- fix npe cased by refer-checker +- ### Version 0.1.7 - Optimize incremental build and fix bugs - Fix memory leak in plugins diff --git a/README.md b/README.md index d5816be..471eced 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ Add those configuration code to your build.gradle, and apply your plugins on dem ```groovy buildscript { - ext.plugin_version="0.1.7" + ext.plugin_version="0.1.8" repositories { google() jcenter() diff --git a/README_zh.md b/README_zh.md index 0be2e11..2fec0f0 100644 --- a/README_zh.md +++ b/README_zh.md @@ -65,7 +65,7 @@ ByteX是一个基于gradle transform api和ASM的字节码插件平台(或许 ```groovy buildscript { - ext.plugin_version="0.1.7" + ext.plugin_version="0.1.8" repositories { google() jcenter() diff --git a/gradle/ext.gradle b/gradle/ext.gradle index 74c12c2..a58efdc 100644 --- a/gradle/ext.gradle +++ b/gradle/ext.gradle @@ -32,7 +32,7 @@ ext { upload_password_snapshot = PASSWORD_SNAPSHOT upload_maven_url_snapshot = UPLOAD_MAVEN_URL_SNAPSHOT upload_group = 'com.bytedance.android.byteX' - upload_version = "0.1.7${(useSnapshotMaven.toBoolean() ? "-${doSh("git config user.name")}-SNAPSHOT" : "")}" + upload_version = "0.1.8${(useSnapshotMaven.toBoolean() ? "-${doSh("git config user.name")}-SNAPSHOT" : "")}" upload_dir = project.rootProject.file('gradle_plugins').path gradle_version = '3.5.3' gson_version = '2.8.2'