From ef5d0c83f7bbd3a0c0534e7ca23cbc4ee7550f3b Mon Sep 17 00:00:00 2001 From: Goooler Date: Sat, 10 Apr 2021 14:42:40 +0800 Subject: [PATCH] Update README files to 4.9.1 (#6617) --- mockwebserver-junit4/README.md | 2 +- mockwebserver-junit5/README.md | 2 +- 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, 9 insertions(+), 9 deletions(-) diff --git a/mockwebserver-junit4/README.md b/mockwebserver-junit4/README.md index f97ef89e9..dd4e7ce95 100644 --- a/mockwebserver-junit4/README.md +++ b/mockwebserver-junit4/README.md @@ -6,7 +6,7 @@ This module integrates mockwebserver3.MockWebServer with JUnit 4. To use, first add this library as a test dependency: ``` -testImplementation("com.squareup.okhttp3:mockwebserver3-junit4:4.9.0") +testImplementation("com.squareup.okhttp3:mockwebserver3-junit4:4.9.1") ``` Then in tests annotated `@org.junit.Test`, you may declare a field with the `@Rule` annotation: diff --git a/mockwebserver-junit5/README.md b/mockwebserver-junit5/README.md index 337b276a1..5f5f3ab4a 100644 --- a/mockwebserver-junit5/README.md +++ b/mockwebserver-junit5/README.md @@ -6,7 +6,7 @@ This module integrates mockwebserver3.MockWebServer with JUnit 5. To use, first add this library as a test dependency: ``` -testRuntimeOnly("com.squareup.okhttp3:mockwebserver3-junit5:4.9.0") +testRuntimeOnly("com.squareup.okhttp3:mockwebserver3-junit5:4.9.1") ``` Then in tests annotated `@org.junit.jupiter.api.Test`, you may add a [MockWebServer] as a test diff --git a/mockwebserver/README.md b/mockwebserver/README.md index 087b56e73..c89ebfac8 100644 --- a/mockwebserver/README.md +++ b/mockwebserver/README.md @@ -142,7 +142,7 @@ server.setDispatcher(dispatcher); ### Download ```kotlin -testImplementation("com.squareup.okhttp3:mockwebserver:4.9.0") +testImplementation("com.squareup.okhttp3:mockwebserver:4.9.1") ``` ### License diff --git a/okhttp-brotli/README.md b/okhttp-brotli/README.md index f6039397e..cb9dd45ec 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.9.0") +implementation("com.squareup.okhttp3:okhttp-brotli:4.9.1") ``` [1]: https://github.com/google/brotli diff --git a/okhttp-dnsoverhttps/README.md b/okhttp-dnsoverhttps/README.md index a940cba87..510c86f8d 100644 --- a/okhttp-dnsoverhttps/README.md +++ b/okhttp-dnsoverhttps/README.md @@ -6,7 +6,7 @@ This module is an implementation of [DNS over HTTPS][1] using OkHttp. ### Download ```kotlin -testImplementation("com.squareup.okhttp3:okhttp-dnsoverhttps:4.9.0") +testImplementation("com.squareup.okhttp3:okhttp-dnsoverhttps:4.9.1") ``` ### Usage diff --git a/okhttp-logging-interceptor/README.md b/okhttp-logging-interceptor/README.md index d281e32e5..e62d6a5da 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.9.0") +implementation("com.squareup.okhttp3:logging-interceptor:4.9.1") ``` diff --git a/okhttp-sse/README.md b/okhttp-sse/README.md index 2a729274f..c485b66cf 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.9.0") +testImplementation("com.squareup.okhttp3:okhttp-sse:4.9.1") ``` diff --git a/okhttp-tls/README.md b/okhttp-tls/README.md index cbfa7f313..5c1d86ef0 100644 --- a/okhttp-tls/README.md +++ b/okhttp-tls/README.md @@ -227,7 +227,7 @@ Download -------- ```kotlin -implementation("com.squareup.okhttp3:okhttp-tls:4.9.0") +implementation("com.squareup.okhttp3:okhttp-tls:4.9.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 701adfd39..3e9412df3 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.9.0") +testImplementation("com.squareup.okhttp3:okhttp-urlconnection:4.9.1") ```