Skip to content

Commit

Permalink
Release OkHttp 3.8.1 with the connection coalescing fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
squarejesse committed Jun 18, 2017
1 parent 243b348 commit 7cc8fed
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
Change Log
==========

## Version 3.8.1

_2017-06-18_

* Fix: Recover gracefully from stale coalesced connections. We had a bug where
connection coalescing (introduced in OkHttp 3.7.0) and stale connection
recovery could interact to cause a `NoSuchElementException` crash in the
`RouteSelector`.


## Version 3.8.0

_2017-05-13_
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ Download [the latest JAR][3] or grab via Maven:
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>3.8.0</version>
<version>3.8.1</version>
</dependency>
```
or Gradle:
```groovy
compile 'com.squareup.okhttp3:okhttp:3.8.0'
compile 'com.squareup.okhttp3:okhttp:3.8.1'
```

Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap].
Expand All @@ -36,13 +36,13 @@ Download [the latest JAR][4] or grab via Maven:
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>mockwebserver</artifactId>
<version>3.8.0</version>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
```
or Gradle:
```groovy
testCompile 'com.squareup.okhttp3:mockwebserver:3.8.0'
testCompile 'com.squareup.okhttp3:mockwebserver:3.8.1'
```

ProGuard
Expand Down

0 comments on commit 7cc8fed

Please sign in to comment.