Skip to content

Commit

Permalink
🔖 Release v1.13.0 (#341)
Browse files Browse the repository at this point in the history
  • Loading branch information
kittinunf authored Apr 30, 2018
1 parent 6c597ad commit 17583e1
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Fuel

[ ![Kotlin](https://img.shields.io/badge/Kotlin-1.1.60-blue.svg)](http://kotlinlang.org) [ ![jcenter](https://api.bintray.com/packages/kittinunf/maven/Fuel-Android/images/download.svg) ](https://bintray.com/kittinunf/maven/Fuel-Android/_latestVersion) [![Build Status](https://travis-ci.org/kittinunf/Fuel.svg?branch=master)](https://travis-ci.org/kittinunf/Fuel)
[ ![Kotlin](https://img.shields.io/badge/Kotlin-1.2.40-blue.svg)](http://kotlinlang.org) [ ![jcenter](https://api.bintray.com/packages/kittinunf/maven/Fuel-Android/images/download.svg) ](https://bintray.com/kittinunf/maven/Fuel-Android/_latestVersion) [![Build Status](https://travis-ci.org/kittinunf/Fuel.svg?branch=master)](https://travis-ci.org/kittinunf/Fuel)
[![Codecov](https://codecov.io/github/kittinunf/Fuel/coverage.svg?branch=master)](https://codecov.io/gh/kittinunf/Fuel)

The easiest HTTP networking library for Kotlin/Android.
Expand All @@ -20,7 +20,8 @@ The easiest HTTP networking library for Kotlin/Android.
- [x] Special test mode for easier testing
- [x] RxJava 2.x support out of the box
- [x] Google Components [LiveData](https://developer.android.com/topic/libraries/architecture/livedata.html) support
- [x] Gson module support
- [x] Built-in object serialization module (Gson, Jackson, Moshi, Forge) :sparkles:
- [x] Support Kotlin's [Coroutines](https://github.com/Kotlin/kotlinx.coroutines) module
- [x] API Routing

## Installation
Expand All @@ -41,6 +42,10 @@ The easiest HTTP networking library for Kotlin/Android.

* [RxJava](https://github.com/ReactiveX/RxJava) - RxJava – Reactive Extensions for the JVM

### Dependency - fuel-coroutines

* [Coroutines](https://github.com/Kotlin/kotlinx.coroutines) - Kotlin Coroutines - Library support for Kotlin coroutines

### Dependency - fuel-gson

* [Gson](https://github.com/google/gson) - Gson - A Java serialization/deserialization library to convert Java Objects into JSON and back
Expand All @@ -53,6 +58,10 @@ The easiest HTTP networking library for Kotlin/Android.

* [Moshi](https://github.com/square/moshi) - Moshi - A modern JSON library for Android and Java

### Dependency - fuel-forge

* [Forge](https://github.com/kittinunf/Forge/) - Forge - Functional style JSON parsing written in Kotlin

### Gradle

``` Groovy
Expand All @@ -65,9 +74,11 @@ dependencies {
compile 'com.github.kittinunf.fuel:fuel-android:<latest-version>' //for Android
compile 'com.github.kittinunf.fuel:fuel-livedata:<latest-version>' //for LiveData support
compile 'com.github.kittinunf.fuel:fuel-rxjava:<latest-version>' //for RxJava support
compile 'com.github.kittinunf.fuel:fuel-coroutines:<latest-version>' //for Kotlin Coroutines support
compile 'com.github.kittinunf.fuel:fuel-gson:<latest-version>' //for Gson support
compile 'com.github.kittinunf.fuel:fuel-jackson:<latest-version>' //for Jackson support
compile 'com.github.kittinunf.fuel:fuel-moshi:<latest-version>' //for Moshi support
compile 'com.github.kittinunf.fuel:fuel-forge:<latest-version>' //for Forge support
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {
ext {
publishVersion = '1.12.1'
publishVersion = '1.13.0'

//dependencies version
kotlinVersion = '1.2.40'
Expand Down
2 changes: 1 addition & 1 deletion deploy_bintray.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ if [[ "$TRAVIS_BRANCH" == */release-v* ]]; then

echo "We're on release branch, deploying at $TRAVIS_BRANCH"

modules=("fuel" "fuel-android" "fuel-rxjava" "fuel-jackson" "fuel-gson" "fuel-livedata" "fuel-moshi")
modules=("fuel" "fuel-android" "fuel-rxjava" "fuel-jackson" "fuel-gson" "fuel-livedata" "fuel-moshi" "fuel-forge" "fuel-coroutines")
for i in "${modules[@]}"
do
echo ">> Deploying $i ..."
Expand Down

0 comments on commit 17583e1

Please sign in to comment.