Skip to content

Commit d3cef67

Browse files
committed
+ update 0.8.8
1 parent 6ee402e commit d3cef67

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

README-zh.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
![Freeline](http://ww4.sinaimg.cn/large/006tNc79gw1f6ooza8pkuj30h804gjrk.jpg)
44

5-
[![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)
5+
[![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)
66

77
Freeline 是 Android 平台上的秒级编译方案,Instant Run 的替代品,也可以从 [Freeline 官方主页](https://www.freelinebuild.com/)来获取更多的信息。
88

@@ -51,7 +51,7 @@ buildscript {
5151
jcenter()
5252
}
5353
dependencies {
54-
classpath 'com.antfortune.freeline:gradle:0.8.7'
54+
classpath 'com.antfortune.freeline:gradle:0.8.8'
5555
}
5656
}
5757
````

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
![Freeline](http://ww4.sinaimg.cn/large/006tNc79gw1f6ooza8pkuj30h804gjrk.jpg)
44

5-
[![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)
5+
[![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)
66

77
*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.
88

@@ -57,7 +57,7 @@ buildscript {
5757
jcenter()
5858
}
5959
dependencies {
60-
classpath 'com.antfortune.freeline:gradle:0.8.7'
60+
classpath 'com.antfortune.freeline:gradle:0.8.8'
6161
}
6262
}
6363
````

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ task clean(type: Delete) {
3030
def supportLibVersion = '25.1.1'
3131

3232
ext {
33-
freelineDevVersion = '0.8.7-SNAPSHOT'
34-
freelineReleaseVersion = '0.8.7'
33+
freelineDevVersion = '0.8.8-SNAPSHOT'
34+
freelineReleaseVersion = '0.8.8'
3535
minSdkVersion = 14
3636
targetSdkVersion = 25
3737
compileSdkVersion = 25

freeline-gradle-plugin/src/main/groovy/com/antfortune/freeline/FreelinePlugin.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import org.gradle.util.VersionNumber
1616
*/
1717
class FreelinePlugin implements Plugin<Project> {
1818

19-
String freelineVersion = "0.8.7"
19+
String freelineVersion = "0.8.8"
2020

2121
@Override
2222
void apply(Project project) {

freeline_core/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import os
44

55
VERSION_FORMATTER = '{}({})'
6-
FREELINE_VERSION = 'v0.8.7'
6+
FREELINE_VERSION = 'v0.8.8'
77

88

99
def get_freeline_version():

0 commit comments

Comments
 (0)