Skip to content

Commit

Permalink
+ update to 0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lomanyong committed Sep 9, 2016
1 parent bc74fa4 commit b6501c8
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 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.6.1-red.svg) ![BSD License](https://img.shields.io/badge/license-BSD%20-blue.svg) ![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)
![Release Version](https://img.shields.io/badge/release-0.6.2-red.svg) ![BSD License](https://img.shields.io/badge/license-BSD%20-blue.svg) ![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)

*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 @@ -50,7 +50,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.antfortune.freeline:gradle:0.6.1'
classpath 'com.antfortune.freeline:gradle:0.6.2'
}
}
````
Expand All @@ -67,9 +67,9 @@ android {
}
dependencies {
debugCompile 'com.antfortune.freeline:runtime:0.6.1'
releaseCompile 'com.antfortune.freeline:runtime-no-op:0.6.1'
testCompile 'com.antfortune.freeline:runtime-no-op:0.6.1'
debugCompile 'com.antfortune.freeline:runtime:0.6.2'
releaseCompile 'com.antfortune.freeline:runtime-no-op:0.6.2'
testCompile 'com.antfortune.freeline:runtime-no-op:0.6.2'
}
````
Finally, apply freeline in your application class.
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.6.1'
FREELINE_VERSION = 'v0.6.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.6.1'
def publishVersion = '0.6.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.6.1'
version '0.6.2'

sourceCompatibility = 1.6
targetCompatibility = 1.6
Expand Down
2 changes: 1 addition & 1 deletion runtime/runtime-no-op/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 = 'runtime-no-op'
def libraryName = 'freeline-runtime-no-op'
def publishVersion = '0.6.1'
def publishVersion = '0.6.2'

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

group 'com.antfortune.freeline'
version '0.6.1'
version '0.6.2'

android {
compileSdkVersion 24
Expand Down
2 changes: 1 addition & 1 deletion runtime/runtime/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 = 'runtime'
def libraryName = 'freeline-runtime'
def publishVersion = '0.6.1'
def publishVersion = '0.6.2'

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

group 'com.antfortune.freeline'
version '0.6.1'
version '0.6.2'

android {
compileSdkVersion 24
Expand Down
2 changes: 1 addition & 1 deletion sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.0-rc1'
classpath 'com.antfortune.freeline:gradle:0.6.1'
classpath 'com.antfortune.freeline:gradle:0.6.2'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.4'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
// NOTE: Do not place your application dependencies here; they belong
Expand Down

0 comments on commit b6501c8

Please sign in to comment.