diff --git a/README-zh.md b/README-zh.md index 3e337cf..e9db6c4 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.7-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.8-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.7' + classpath 'com.antfortune.freeline:gradle:0.8.8' } } ```` diff --git a/README.md b/README.md index 8d059b6..f166712 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.7-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.8-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.7' + classpath 'com.antfortune.freeline:gradle:0.8.8' } } ```` diff --git a/build.gradle b/build.gradle index af1fb1d..92c6aba 100644 --- a/build.gradle +++ b/build.gradle @@ -30,8 +30,8 @@ task clean(type: Delete) { def supportLibVersion = '25.1.1' ext { - freelineDevVersion = '0.8.7-SNAPSHOT' - freelineReleaseVersion = '0.8.7' + freelineDevVersion = '0.8.8-SNAPSHOT' + freelineReleaseVersion = '0.8.8' minSdkVersion = 14 targetSdkVersion = 25 compileSdkVersion = 25 diff --git a/freeline-gradle-plugin/src/main/groovy/com/antfortune/freeline/FreelinePlugin.groovy b/freeline-gradle-plugin/src/main/groovy/com/antfortune/freeline/FreelinePlugin.groovy index 0667bcd..ce1fb02 100644 --- a/freeline-gradle-plugin/src/main/groovy/com/antfortune/freeline/FreelinePlugin.groovy +++ b/freeline-gradle-plugin/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.7" + String freelineVersion = "0.8.8" @Override void apply(Project project) { diff --git a/freeline_core/version.py b/freeline_core/version.py index 782e57a..49396b7 100755 --- a/freeline_core/version.py +++ b/freeline_core/version.py @@ -3,7 +3,7 @@ import os VERSION_FORMATTER = '{}({})' -FREELINE_VERSION = 'v0.8.7' +FREELINE_VERSION = 'v0.8.8' def get_freeline_version():