Skip to content

Commit 79e8676

Browse files
committed
+ update 0.8.4
1 parent d7b52c3 commit 79e8676

8 files changed

Lines changed: 10 additions & 10 deletions

File tree

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.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)
5+
[![Release Version](https://img.shields.io/badge/release-0.8.4-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是由[蚂蚁聚宝](https://www.antfortune.com/)Android团队开发的一款针对Android平台的增量编译工具。它可以充分利用缓存文件,在几秒钟内迅速地对代码的改动进行编译并部署到设备上,有效地减少了日常开发中的大量重新编译与安装的耗时。
88

@@ -49,7 +49,7 @@ buildscript {
4949
jcenter()
5050
}
5151
dependencies {
52-
classpath 'com.antfortune.freeline:gradle:0.8.3'
52+
classpath 'com.antfortune.freeline:gradle:0.8.4'
5353
}
5454
}
5555
````

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.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)
5+
[![Release Version](https://img.shields.io/badge/release-0.8.4-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 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.
88

@@ -55,7 +55,7 @@ buildscript {
5555
jcenter()
5656
}
5757
dependencies {
58-
classpath 'com.antfortune.freeline:gradle:0.8.3'
58+
classpath 'com.antfortune.freeline:gradle:0.8.4'
5959
}
6060
}
6161
````

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.3'
6+
FREELINE_VERSION = 'v0.8.4'
77

88

99
def get_freeline_version():

gradle/bintray.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def developerEmail = 'yong.hy@alipay.com'
1515
def publishedGroupId = 'com.antfortune.freeline'
1616
def artifact = 'gradle'
1717
def libraryName = 'freeline-gradle'
18-
def publishVersion = '0.8.3'
18+
def publishVersion = '0.8.4'
1919

2020
install {
2121
repositories {

gradle/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'java'
33
apply from: 'bintray.gradle'
44

55
group 'com.antfortune.freeline'
6-
version '0.8.3'
6+
version '0.8.4'
77

88
sourceCompatibility = 1.6
99
targetCompatibility = 1.6

gradle/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.3"
19+
String freelineVersion = "0.8.4"
2020

2121
@Override
2222
void apply(Project project) {

sample/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
}
88
dependencies {
99
classpath 'com.android.tools.build:gradle:2.2.2'
10-
classpath 'com.antfortune.freeline:gradle:0.8.3'
10+
classpath 'com.antfortune.freeline:gradle:0.8.4'
1111
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.4'
1212
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
1313
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'

sample/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
# This option should only be used with decoupled projects. More details, visit
1717
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
1818
# org.gradle.parallel=true
19-
FREELINE_RELEASE_VERSION=0.8.3
19+
FREELINE_RELEASE_VERSION=0.8.4

0 commit comments

Comments
 (0)