diff --git a/README-zh.md b/README-zh.md index f8acda0..9e46d40 100644 --- a/README-zh.md +++ b/README-zh.md @@ -2,7 +2,7 @@ ![Freeline](http://ww4.sinaimg.cn/large/006tNc79gw1f6ooza8pkuj30h804gjrk.jpg) -[![Release Version](https://img.shields.io/badge/release-0.8.5-red.svg)](https://github.com/alibaba/freeline/releases) [![BSD3 License](https://img.shields.io/badge/license-BSD3-blue.svg)](https://github.com/alibaba/freeline/blob/master/LICENSE) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/alibaba/freeline/pulls) +[![Release Version](https://img.shields.io/badge/release-0.8.6-red.svg)](https://github.com/alibaba/freeline/releases) [![BSD3 License](https://img.shields.io/badge/license-BSD3-blue.svg)](https://github.com/alibaba/freeline/blob/master/LICENSE) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/alibaba/freeline/pulls) Freeline 是 Android 平台上的秒级编译方案,Instant Run 的替代品,也可以从 [Freeline 官方主页](https://www.freelinebuild.com/)来获取更多的信息。 @@ -51,7 +51,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.antfortune.freeline:gradle:0.8.5' + classpath 'com.antfortune.freeline:gradle:0.8.6' } } ```` diff --git a/README.md b/README.md index c5f278d..180dd95 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ![Freeline](http://ww4.sinaimg.cn/large/006tNc79gw1f6ooza8pkuj30h804gjrk.jpg) -[![Release Version](https://img.shields.io/badge/release-0.8.5-red.svg)](https://github.com/alibaba/freeline/releases) [![BSD3 License](https://img.shields.io/badge/license-BSD3-blue.svg)](https://github.com/alibaba/freeline/blob/master/LICENSE) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/alibaba/freeline/pulls) +[![Release Version](https://img.shields.io/badge/release-0.8.6-red.svg)](https://github.com/alibaba/freeline/releases) [![BSD3 License](https://img.shields.io/badge/license-BSD3-blue.svg)](https://github.com/alibaba/freeline/blob/master/LICENSE) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/alibaba/freeline/pulls) *Freeline* is a super fast build tool for Android and an alternative to Instant Run. Caching reusable class files and resource indices, it enables incremental building Android apps, and optionally deploying the updates to your device by hot swap. @@ -57,7 +57,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.antfortune.freeline:gradle:0.8.5' + classpath 'com.antfortune.freeline:gradle:0.8.6' } } ```` diff --git a/freeline_core/gradle_tools.py b/freeline_core/gradle_tools.py index 4ff356a..01389fb 100755 --- a/freeline_core/gradle_tools.py +++ b/freeline_core/gradle_tools.py @@ -1023,7 +1023,7 @@ def get_gradle_executable(config): if 'use_system_gradle' in config and config['use_system_gradle']: return 'gradle' elif is_windows_system(): - return 'gradlew' + return 'gradlew.bat' else: return './gradlew' diff --git a/freeline_core/version.py b/freeline_core/version.py index 425dba2..2804e90 100755 --- a/freeline_core/version.py +++ b/freeline_core/version.py @@ -3,7 +3,7 @@ import os VERSION_FORMATTER = '{}({})' -FREELINE_VERSION = 'v0.8.5' +FREELINE_VERSION = 'v0.8.6' def get_freeline_version(): diff --git a/gradle/bintray.gradle b/gradle/bintray.gradle index a4fffd6..50e4542 100644 --- a/gradle/bintray.gradle +++ b/gradle/bintray.gradle @@ -15,7 +15,7 @@ def developerEmail = 'yong.hy@alipay.com' def publishedGroupId = 'com.antfortune.freeline' def artifact = 'gradle' def libraryName = 'freeline-gradle' -def publishVersion = '0.8.5' +def publishVersion = '0.8.6' install { repositories { diff --git a/gradle/build.gradle b/gradle/build.gradle index 24a34df..5bb6041 100644 --- a/gradle/build.gradle +++ b/gradle/build.gradle @@ -3,7 +3,7 @@ apply plugin: 'java' apply from: 'bintray.gradle' group 'com.antfortune.freeline' -version '0.8.5' +version '0.8.6' sourceCompatibility = 1.6 targetCompatibility = 1.6 @@ -36,4 +36,4 @@ jar { it.absolutePath.contains('javapoet') || it.absolutePath.contains('javaparser-core') ? zipTree(it) : null } } -} \ No newline at end of file +} diff --git a/gradle/src/main/groovy/com/antfortune/freeline/FreelinePlugin.groovy b/gradle/src/main/groovy/com/antfortune/freeline/FreelinePlugin.groovy index b7160f6..f4c4e12 100644 --- a/gradle/src/main/groovy/com/antfortune/freeline/FreelinePlugin.groovy +++ b/gradle/src/main/groovy/com/antfortune/freeline/FreelinePlugin.groovy @@ -16,7 +16,7 @@ import org.gradle.util.VersionNumber */ class FreelinePlugin implements Plugin { - String freelineVersion = "0.8.5" + String freelineVersion = "0.8.6" @Override void apply(Project project) { diff --git a/release-tools/FreelineAapt.exe b/release-tools/FreelineAapt.exe index f76ad43..d966fc6 100755 Binary files a/release-tools/FreelineAapt.exe and b/release-tools/FreelineAapt.exe differ diff --git a/sample/build.gradle b/sample/build.gradle index 00ffaa0..7000b54 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -7,7 +7,7 @@ buildscript { } dependencies { classpath 'com.android.tools.build:gradle:2.2.3' - classpath 'com.antfortune.freeline:gradle:0.8.5' + classpath 'com.antfortune.freeline:gradle:0.8.6' classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.4' classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1' classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8' diff --git a/sample/gradle.properties b/sample/gradle.properties index a84c1fb..84466cb 100644 --- a/sample/gradle.properties +++ b/sample/gradle.properties @@ -16,4 +16,4 @@ # This option should only be used with decoupled projects. More details, visit # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects # org.gradle.parallel=true -FREELINE_RELEASE_VERSION=0.8.5 \ No newline at end of file +FREELINE_RELEASE_VERSION=0.8.6 \ No newline at end of file