Skip to content

Commit

Permalink
+ update to 0.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lomanyong committed Sep 28, 2016
1 parent f4005e1 commit 6a21e0e
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
5 changes: 2 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.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.7.2-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 @@ -52,7 +52,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.antfortune.freeline:gradle:0.7.1'
classpath 'com.antfortune.freeline:gradle:0.7.2'
}
}
````
Expand Down Expand Up @@ -98,7 +98,6 @@ python freeline.py

## Limitations
- Sync incremental resource pack to the device first time may be a bit slow
- Annotation is not supported currently, such as ButterKnife etc.
- Removing res/values is not supported, which may cause aapt exception

## Contributing
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.1'
FREELINE_VERSION = 'v0.7.2'


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 = '[email protected]'
def publishedGroupId = 'com.antfortune.freeline'
def artifact = 'gradle'
def libraryName = 'freeline-gradle'
def publishVersion = '0.7.1'
def publishVersion = '0.7.2'

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.1'
version '0.7.2'

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.1"
String freelineVersion = "0.7.2"

@Override
void apply(Project project) {
Expand Down
3 changes: 2 additions & 1 deletion sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.0'
classpath 'com.antfortune.freeline:gradle:0.7.1'
classpath 'com.antfortune.freeline:gradle:0.7.2'
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'
classpath 'me.tatarka:gradle-retrolambda:3.2.5'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
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.1
FREELINE_RELEASE_VERSION=0.7.2

0 comments on commit 6a21e0e

Please sign in to comment.