Skip to content

Commit

Permalink
🔖 Release v1.11 (#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
kittinunf authored Oct 8, 2017
1 parent e1cdd3f commit 5aaf495
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 8 deletions.
17 changes: 15 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,14 @@ The easiest HTTP networking library for Kotlin/Android.

* [Result](https://github.com/kittinunf/Result) - The modelling for success/failure of operations in Kotlin

### Dependency - fuel-android

* [Android SDK](https://developer.android.com/studio/index.html) - Android SDK

### Dependency - fuel-livedata

* [Live Data](https://developer.android.com/topic/libraries/architecture/livedata.html) - Android Architecture Components - LiveData

### Dependency - fuel-rxjava

* [RxJava](https://github.com/ReactiveX/RxJava) - RxJava – Reactive Extensions for the JVM
Expand All @@ -37,6 +45,10 @@ The easiest HTTP networking library for Kotlin/Android.

* [Gson](https://github.com/google/gson) - Gson - A Java serialization/deserialization library to convert Java Objects into JSON and back

### Dependency - fuel-jackson

* [Jackson](https://github.com/FasterXML/jackson-module-kotlin) - Jackson - The JSON library for Java

### Gradle

``` Groovy
Expand All @@ -47,9 +59,10 @@ repositories {
dependencies {
compile 'com.github.kittinunf.fuel:fuel:<latest-version>' //for JVM
compile 'com.github.kittinunf.fuel:fuel-android:<latest-version>' //for Android
compile 'com.github.kittinunf.fuel:fuel-rxjava:<latest-version>' //for RxJava support
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-gson:<latest-version>' //for Gson support
compile 'com.github.kittinunf.fuel:fuel-jackson:<latest-version>' //for Gson support
}
```

Expand Down Expand Up @@ -665,8 +678,8 @@ Fuel.request(WeatherApi.weatherFor("london")).responseJson { request, response,
## Other libraries
If you like Fuel, you might also like other libraries;
* [Result](https://github.com/kittinunf/Result) - The modelling for success/failure of operations in Kotlin
* [Kovenant](https://github.com/mplatvoet/kovenant) - Kovenant. Promises for Kotlin.
* [Fuse](https://github.com/kittinunf/Fuse) - A simple generic LRU memory/disk cache for Android written in Kotlin
* [Forge] (https://github.com/kittinunf/Forge) - Functional style JSON parsing written in Kotlin

## Credits

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ buildscript {

allprojects {
ext {
publish_version = '1.10.0'
publish_version = '1.11.0'

//dependencies version
kotlin_version = '1.1.4-3'
Expand Down
9 changes: 4 additions & 5 deletions deploy_bintray.sh
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
#!/bin/bash

echo $TRAVIS_BRANCH

if [[ "$TRAVIS_BRANCH" == */release-v* ]]; then

echo "We're on release branch, deploying"

modules=("fuel" "fuel-android" "fuel-rxjava" "fuel-livedata" "fuel-gson" "fuel-jackson")
echo "We're on release branch, deploying at $TRAVIS_BRANCH"

modules=("fuel" "fuel-android" "fuel-rxjava" "fuel-jackson" "fuel-gson" "fuel-livedata")
for i in "${modules[@]}"
do
echo ">> Deploying $i ..."
./gradlew :$i:clean :$i:build :$i:bintrayUpload -PbintrayUser=$BINTRAY_USER -PbintrayKey=$BINTRAY_KEY -PdryRun=false
echo ">> Done deploying for $i"
done

fi
4 changes: 4 additions & 0 deletions fuel-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,7 @@ publish {
uploadName = 'Fuel-Android'
website = 'https://github.com/kittinunf/Fuel'
}

tasks.withType(Javadoc) {
enabled = false
}
4 changes: 4 additions & 0 deletions fuel-livedata/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,7 @@ publish {
uploadName = 'Fuel-Android'
website = 'https://github.com/kittinunf/Fuel'
}

tasks.withType(Javadoc) {
enabled = false
}

0 comments on commit 5aaf495

Please sign in to comment.