diff --git a/README-zh.md b/README-zh.md index 014eaf9..b6766d0 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.2-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.3-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是由[蚂蚁聚宝](https://www.antfortune.com/)Android团队开发的一款针对Android平台的增量编译工具。它可以充分利用缓存文件,在几秒钟内迅速地对代码的改动进行编译并部署到设备上,有效地减少了日常开发中的大量重新编译与安装的耗时。 @@ -49,7 +49,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.antfortune.freeline:gradle:0.8.2' + classpath 'com.antfortune.freeline:gradle:0.8.3' } } ```` diff --git a/README.md b/README.md index 2728436..bc6de74 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.2-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.3-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 fast build and deployment tool for Android. Caching reusable class files and resource indices, it enables incrementally building Android apps, and optionally deploying the update to your device with hot swap. @@ -55,7 +55,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.antfortune.freeline:gradle:0.8.2' + classpath 'com.antfortune.freeline:gradle:0.8.3' } } ```` diff --git a/freeline_core/version.py b/freeline_core/version.py index ea9b0c9..e576621 100755 --- a/freeline_core/version.py +++ b/freeline_core/version.py @@ -3,7 +3,7 @@ import os VERSION_FORMATTER = '{}({})' -FREELINE_VERSION = 'v0.8.2' +FREELINE_VERSION = 'v0.8.3' def get_freeline_version(): diff --git a/gradle/bintray.gradle b/gradle/bintray.gradle index cefc76f..7bcc5ab 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.2' +def publishVersion = '0.8.3' install { repositories { diff --git a/gradle/build.gradle b/gradle/build.gradle index 2544d9d..eea9793 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.2' +version '0.8.3' sourceCompatibility = 1.6 targetCompatibility = 1.6 diff --git a/gradle/src/main/groovy/com/antfortune/freeline/FreelinePlugin.groovy b/gradle/src/main/groovy/com/antfortune/freeline/FreelinePlugin.groovy index 2a81405..98de39f 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.2" + String freelineVersion = "0.8.3" @Override void apply(Project project) { diff --git a/sample/build.gradle b/sample/build.gradle index 378458b..0e5219c 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -7,7 +7,7 @@ buildscript { } dependencies { classpath 'com.android.tools.build:gradle:2.2.2' - classpath 'com.antfortune.freeline:gradle:0.8.2' + classpath 'com.antfortune.freeline:gradle:0.8.3' 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 d895988..3208d63 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.2 \ No newline at end of file +FREELINE_RELEASE_VERSION=0.8.3 \ No newline at end of file