Skip to content

Commit

Permalink
Prepare version 1.6.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Jun 7, 2014
1 parent d77d4c4 commit c1f438b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
Change Log
==========

Version 1.6.0 *(2014-06-06)*
----------------------------

* New: `@Streaming` on a `Response` type will skip buffering the body to a `byte[]` before delivering.
* When using OkHttp, verson 1.6.0 or newer (including 2.0.0+) is now required.
* The absence of a response body and an empty body are now differentiated in the log messages.
* Fix: If set, the `RequestInterceptor` is now applied at the time of `Observable` subscription rather
than at the time of its creation.
* Fix: `Callback` subtypes are now supported when using `MockRestAdapter`.
* Fix: `RetrofitError` now contains a useful message indicating the reason for the failure.
* Fix: Exceptions thrown when parsing the response type of the interface are now properly propagated.
* Fix: Calling `Response#getBody` when `null` body now correctly returns instead of throwing an NPE.
* Experimental RxJava support updated for v0.19.
* The `Content-Type` and `Content-Length` headers are no longer automatically added to the header list
on the `Request` object. This reverts erroneous behavior added in v1.5.0. Custom `Client` implementations
should revert to adding these headers based on the `TypedInput` body of the `Request`.


Version 1.5.1 *(2014-05-08)*
----------------------------

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ Download [the latest JAR][2] or grab via Maven:
<dependency>
<groupId>com.squareup.retrofit</groupId>
<artifactId>retrofit</artifactId>
<version>1.5.1</version>
<version>1.6.0</version>
</dependency>
```
or Gradle:
```groovy
compile 'com.squareup.retrofit:retrofit:1.5.1'
compile 'com.squareup.retrofit:retrofit:1.6.0'
```


Expand Down

0 comments on commit c1f438b

Please sign in to comment.