Skip to content

Commit

Permalink
+ update to v0.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
lomanyong committed Sep 1, 2016
1 parent 4eae8c0 commit a5c3b01
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
6 changes: 3 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.5.4-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.5.5-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 @@ -49,7 +49,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.antfortune.freeline:gradle:0.5.4'
classpath 'com.antfortune.freeline:gradle:0.5.5'
}
}
````
Expand All @@ -66,7 +66,7 @@ android {
}
dependencies {
compile 'com.antfortune.freeline:runtime:0.5.4'
compile 'com.antfortune.freeline:runtime:0.5.5'
}
````
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.5.3'
FREELINE_VERSION = 'v0.5.5'


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.5.3'
def publishVersion = '0.5.5'

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.5.3'
version '0.5.5'

sourceCompatibility = 1.6
targetCompatibility = 1.6
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.5.3'
def publishVersion = '0.5.5'

install {
repositories {
Expand Down
6 changes: 3 additions & 3 deletions 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.5.4'
version '0.5.5'

android {
compileSdkVersion 24
Expand All @@ -11,8 +11,8 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 24
versionCode 4
versionName "0.5.4"
versionCode 5
versionName "0.5.5"
}
buildTypes {
release {
Expand Down

0 comments on commit a5c3b01

Please sign in to comment.