From 96a2118dd447ebc28a64d9b11a431ca642edc441 Mon Sep 17 00:00:00 2001 From: Jesse Wilson Date: Thu, 6 Aug 2020 10:01:19 -0400 Subject: [PATCH] Release OkHttp 4.8.1. --- CHANGELOG.md | 9 +++++++++ README.md | 8 ++++---- mockwebserver/README.md | 2 +- okhttp-brotli/README.md | 2 +- okhttp-dnsoverhttps/README.md | 2 +- okhttp-logging-interceptor/README.md | 2 +- okhttp-sse/README.md | 2 +- okhttp-tls/README.md | 2 +- okhttp-urlconnection/README.md | 2 +- 9 files changed, 20 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e7fbbc6f2..9066a9726 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ Change Log ========== +## Version 4.8.1 + +_2020-08-06_ + + * Fix: Don't crash in `HeldCertificate.Builder` when creating certificates on older versions of + Android, including Android 6. We were using a feature of `SimpleDateFormat` that wasn't + available in those versions! + + ## Version 4.8.0 _2020-07-11_ diff --git a/README.md b/README.md index a4618a4f3..e1e01f0e2 100644 --- a/README.md +++ b/README.md @@ -99,10 +99,10 @@ Releases Our [change log][changelog] has release history. -The latest release is available on [Maven Central](https://search.maven.org/artifact/com.squareup.okhttp3/okhttp/4.8.0/jar). +The latest release is available on [Maven Central](https://search.maven.org/artifact/com.squareup.okhttp3/okhttp/4.8.1/jar). ```kotlin -implementation("com.squareup.okhttp3:okhttp:4.8.0") +implementation("com.squareup.okhttp3:okhttp:4.8.1") ``` Snapshot builds are [available][snap]. [R8 and ProGuard][r8_proguard] rules are available. @@ -113,10 +113,10 @@ MockWebServer OkHttp includes a library for testing HTTP, HTTPS, and HTTP/2 clients. -The latest release is available on [Maven Central](https://search.maven.org/artifact/com.squareup.okhttp3/mockwebserver/4.8.0/jar). +The latest release is available on [Maven Central](https://search.maven.org/artifact/com.squareup.okhttp3/mockwebserver/4.8.1/jar). ```kotlin -testImplementation("com.squareup.okhttp3:mockwebserver:4.8.0") +testImplementation("com.squareup.okhttp3:mockwebserver:4.8.1") ``` License diff --git a/mockwebserver/README.md b/mockwebserver/README.md index c52ebc945..b2742f9c9 100644 --- a/mockwebserver/README.md +++ b/mockwebserver/README.md @@ -142,7 +142,7 @@ server.setDispatcher(dispatcher); ### Download ```kotlin -testImplementation("com.squareup.okhttp3:mockwebserver:4.8.0") +testImplementation("com.squareup.okhttp3:mockwebserver:4.8.1") ``` ### License diff --git a/okhttp-brotli/README.md b/okhttp-brotli/README.md index 3f680c160..9450e407d 100644 --- a/okhttp-brotli/README.md +++ b/okhttp-brotli/README.md @@ -14,7 +14,7 @@ OkHttpClient client = new OkHttpClient.Builder() ``` ```kotlin -implementation("com.squareup.okhttp3:okhttp-brotli:4.8.0") +implementation("com.squareup.okhttp3:okhttp-brotli:4.8.1") ``` [1]: https://github.com/google/brotli diff --git a/okhttp-dnsoverhttps/README.md b/okhttp-dnsoverhttps/README.md index 231ba7857..fbc1acb38 100644 --- a/okhttp-dnsoverhttps/README.md +++ b/okhttp-dnsoverhttps/README.md @@ -7,5 +7,5 @@ API is not considered stable and may change at any time. ### Download ```kotlin -testImplementation("com.squareup.okhttp3:okhttp-dnsoverhttps:4.8.0") +testImplementation("com.squareup.okhttp3:okhttp-dnsoverhttps:4.8.1") ``` diff --git a/okhttp-logging-interceptor/README.md b/okhttp-logging-interceptor/README.md index 17b121677..8da167503 100644 --- a/okhttp-logging-interceptor/README.md +++ b/okhttp-logging-interceptor/README.md @@ -37,7 +37,7 @@ Download -------- ```kotlin -implementation("com.squareup.okhttp3:logging-interceptor:4.8.0") +implementation("com.squareup.okhttp3:logging-interceptor:4.8.1") ``` diff --git a/okhttp-sse/README.md b/okhttp-sse/README.md index fc10d6aaf..1a7e2464c 100644 --- a/okhttp-sse/README.md +++ b/okhttp-sse/README.md @@ -7,5 +7,5 @@ API is not considered stable and may change at any time. ### Download ```kotlin -testImplementation("com.squareup.okhttp3:okhttp-sse:4.8.0") +testImplementation("com.squareup.okhttp3:okhttp-sse:4.8.1") ``` diff --git a/okhttp-tls/README.md b/okhttp-tls/README.md index 3aa5ec9f4..276d0401a 100644 --- a/okhttp-tls/README.md +++ b/okhttp-tls/README.md @@ -227,7 +227,7 @@ Download -------- ```kotlin -implementation("com.squareup.okhttp3:okhttp-tls:4.8.0") +implementation("com.squareup.okhttp3:okhttp-tls:4.8.1") ``` [held_certificate]: http://square.github.io/okhttp/4.x/okhttp-tls/okhttp3.tls/-held-certificate/ diff --git a/okhttp-urlconnection/README.md b/okhttp-urlconnection/README.md index 9a01cc705..ce2a0f72f 100644 --- a/okhttp-urlconnection/README.md +++ b/okhttp-urlconnection/README.md @@ -6,5 +6,5 @@ This module integrates OkHttp with `Authenticator` and `CookieHandler` from `jav ### Download ```kotlin -testImplementation("com.squareup.okhttp3:okhttp-urlconnection:4.8.0") +testImplementation("com.squareup.okhttp3:okhttp-urlconnection:4.8.1") ```