Skip to content

Commit

Permalink
Bump version to 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kittinunf committed Apr 29, 2016
1 parent 676f84c commit b2b465d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ repositories {
}
dependencies {
compile 'com.github.kittinunf.fuel:fuel:1.2.0' //for JVM
compile 'com.github.kittinunf.fuel:fuel-android:1.2.0' //for Android
compile 'com.github.kittinunf.fuel:fuel-rxjava:1.2.0' //for RxJava support
compile 'com.github.kittinunf.fuel:fuel:1.2.1' //for JVM
compile 'com.github.kittinunf.fuel:fuel-android:1.2.1' //for Android
compile 'com.github.kittinunf.fuel:fuel-rxjava:1.2.1' //for RxJava support
}
```

Expand Down Expand Up @@ -462,7 +462,7 @@ val (request, response, result) = manager.request(Method.GET, "https://httpbin.o
* Another example is that you might wanna add data into your Database, you can achieve that with providing `responseInterceptors` such as
``` Kotlin
inline fun <reified T> DbResponseInterceptor<T>() =
inline fun <reified T> DbResponseInterceptor() =
{ next: (Request, Response) -> Response ->
{ req: Request, res: Response ->
val db = DB.getInstance()
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ buildscript {

allprojects {
ext {
publish_version = '1.2.0'
publish_version = '1.2.1'

//dependencies version
kotlin_version = '1.0.1'
Expand Down

0 comments on commit b2b465d

Please sign in to comment.