Skip to content

Commit

Permalink
+ update 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lomanyong committed Nov 2, 2016
1 parent 74f34f5 commit 66c4b9e
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 13 deletions.
7 changes: 4 additions & 3 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.7.3.1-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.0-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平台的增量编译工具。它可以充分利用缓存文件,在几秒钟内迅速地对代码的改动进行编译并部署到设备上,有效地减少了日常开发中的大量重新编译与安装的耗时。

Expand All @@ -26,6 +26,7 @@ Freeline会根据代码文件的变更情况,自动在全量编译与增量编
- 支持so动态更新
- 支持resource.arsc缓存
- 支持retrolambda
- 支持DataBinding
- 支持各类主流注解库
- 支持Windows,Linux,Mac平台

Expand All @@ -48,7 +49,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.antfortune.freeline:gradle:0.7.3.1'
classpath 'com.antfortune.freeline:gradle:0.8.0'
}
}
````
Expand Down Expand Up @@ -116,4 +117,4 @@ See [wiki](https://github.com/alibaba/freeline/wiki/%E5%B8%B8%E8%A7%81%E9%97%AE%
- [LayoutCast](https://github.com/mmin18/LayoutCast)

## License
BSD License
BSD3 License
7 changes: 4 additions & 3 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.7.3.1-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.0-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.

Expand Down Expand Up @@ -33,6 +33,7 @@ FreelineAapt will open source codes later. See wiki to know more about Freeline,
- Native so hot swap support
- Annotation support
- Retrolambda support
- DataBinding support

See the following table for changes support.

Expand All @@ -54,7 +55,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.antfortune.freeline:gradle:0.7.3.1'
classpath 'com.antfortune.freeline:gradle:0.8.0'
}
}
````
Expand Down Expand Up @@ -123,7 +124,7 @@ See [wiki](https://github.com/alibaba/freeline/wiki/%E5%B8%B8%E8%A7%81%E9%97%AE%
- [LayoutCast](https://github.com/mmin18/LayoutCast)

## License
BSD License
BSD3 License



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.7.3.1'
FREELINE_VERSION = 'v0.8.0'


def get_freeline_version():
Expand Down
2 changes: 1 addition & 1 deletion gradle/bintray.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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.7.3.1'
def publishVersion = '0.8.0'

install {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion gradle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'java'
apply from: 'bintray.gradle'

group 'com.antfortune.freeline'
version '0.7.3.1'
version '0.8.0'

sourceCompatibility = 1.6
targetCompatibility = 1.6
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import org.gradle.util.VersionNumber
*/
class FreelinePlugin implements Plugin<Project> {

String freelineVersion = "0.7.3.1"
String freelineVersion = "0.8.0"

@Override
void apply(Project project) {
Expand Down
Binary file added release-tools/databinding-cli.jar
Binary file not shown.
Binary file added release-tools/databinding-cli8.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.0'
classpath 'com.antfortune.freeline:gradle:0.7.3.1'
classpath 'com.android.tools.build:gradle:2.2.2'
classpath 'com.antfortune.freeline:gradle:0.8.0'
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'
Expand Down
2 changes: 1 addition & 1 deletion sample/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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.7.3.1
FREELINE_RELEASE_VERSION=0.8.0

0 comments on commit 66c4b9e

Please sign in to comment.