Skip to content

Commit ab9243c

Browse files
committed
+ update 0.8.6
1 parent 9c7f575 commit ab9243c

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
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.5-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.6-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.5'
54+
classpath 'com.antfortune.freeline:gradle:0.8.6'
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.5-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.6-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.5'
60+
classpath 'com.antfortune.freeline:gradle:0.8.6'
6161
}
6262
}
6363
````

freeline_core/gradle_tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1023,7 +1023,7 @@ def get_gradle_executable(config):
10231023
if 'use_system_gradle' in config and config['use_system_gradle']:
10241024
return 'gradle'
10251025
elif is_windows_system():
1026-
return 'gradlew'
1026+
return 'gradlew.bat'
10271027
else:
10281028
return './gradlew'
10291029

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.5'
6+
FREELINE_VERSION = 'v0.8.6'
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.5'
18+
def publishVersion = '0.8.6'
1919

2020
install {
2121
repositories {

gradle/build.gradle

Lines changed: 2 additions & 2 deletions
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.5'
6+
version '0.8.6'
77

88
sourceCompatibility = 1.6
99
targetCompatibility = 1.6
@@ -36,4 +36,4 @@ jar {
3636
it.absolutePath.contains('javapoet') || it.absolutePath.contains('javaparser-core') ? zipTree(it) : null
3737
}
3838
}
39-
}
39+
}

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.5"
19+
String freelineVersion = "0.8.6"
2020

2121
@Override
2222
void apply(Project project) {

release-tools/FreelineAapt.exe

-1.56 MB
Binary file not shown.

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.3'
10-
classpath 'com.antfortune.freeline:gradle:0.8.5'
10+
classpath 'com.antfortune.freeline:gradle:0.8.6'
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.5
19+
FREELINE_RELEASE_VERSION=0.8.6

0 commit comments

Comments
 (0)