Skip to content

Commit

Permalink
+ update 0.8.8
Browse files Browse the repository at this point in the history
  • Loading branch information
lomanyong committed Nov 8, 2017
1 parent 6ee402e commit d3cef67
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README-zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/)来获取更多的信息。

Expand Down Expand Up @@ -51,7 +51,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.antfortune.freeline:gradle:0.8.7'
classpath 'com.antfortune.freeline:gradle:0.8.8'
}
}
````
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down Expand Up @@ -57,7 +57,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.antfortune.freeline:gradle:0.8.7'
classpath 'com.antfortune.freeline:gradle:0.8.8'
}
}
````
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import org.gradle.util.VersionNumber
*/
class FreelinePlugin implements Plugin<Project> {

String freelineVersion = "0.8.7"
String freelineVersion = "0.8.8"

@Override
void apply(Project project) {
Expand Down
2 changes: 1 addition & 1 deletion freeline_core/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import os

VERSION_FORMATTER = '{}({})'
FREELINE_VERSION = 'v0.8.7'
FREELINE_VERSION = 'v0.8.8'


def get_freeline_version():
Expand Down

0 comments on commit d3cef67

Please sign in to comment.