From c9f62b501ad6ba7d4f70afa3664e8170333c167b Mon Sep 17 00:00:00 2001 From: Jesse Wilson Date: Sun, 17 Dec 2023 10:34:10 -0500 Subject: [PATCH] Advertise 4.12.0 in docs --- README.md | 10 +++++----- mockwebserver-junit4/README.md | 2 +- mockwebserver-junit5/README.md | 2 +- mockwebserver/README.md | 2 +- okhttp-android/README.md | 2 +- okhttp-brotli/README.md | 2 +- okhttp-dnsoverhttps/README.md | 2 +- okhttp-java-net-cookiejar/README.md | 2 +- okhttp-logging-interceptor/README.md | 2 +- okhttp-sse/README.md | 2 +- okhttp-tls/README.md | 2 +- okhttp-urlconnection/README.md | 2 +- 12 files changed, 16 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index ea58a647b1e4..064b261eca37 100644 --- a/README.md +++ b/README.md @@ -97,10 +97,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.11.0/jar). +The latest release is available on [Maven Central](https://search.maven.org/artifact/com.squareup.okhttp3/okhttp/4.12.0/jar). ```kotlin -implementation("com.squareup.okhttp3:okhttp:4.11.0") +implementation("com.squareup.okhttp3:okhttp:4.12.0") ``` Snapshot builds are [available][snap]. [R8 and ProGuard][r8_proguard] rules are available. @@ -110,7 +110,7 @@ Also, we have a [bill of materials (BOM)][bom] available to help you keep OkHttp ```kotlin dependencies { // define a BOM and its version - implementation(platform("com.squareup.okhttp3:okhttp-bom:4.11.0")) + implementation(platform("com.squareup.okhttp3:okhttp-bom:4.12.0")) // define any required OkHttp artifacts without version implementation("com.squareup.okhttp3:okhttp") @@ -123,10 +123,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.11.0/jar). +The latest release is available on [Maven Central](https://search.maven.org/artifact/com.squareup.okhttp3/mockwebserver/4.12.0/jar). ```kotlin -testImplementation("com.squareup.okhttp3:mockwebserver:4.11.0") +testImplementation("com.squareup.okhttp3:mockwebserver:4.12.0") ``` GraalVM Native Image diff --git a/mockwebserver-junit4/README.md b/mockwebserver-junit4/README.md index f18184bcae8d..8c207788253e 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.11.0") +testImplementation("com.squareup.okhttp3:mockwebserver3-junit4:4.12.0") ``` 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 3676cec7705c..fa5f8a838d99 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.11.0") +testRuntimeOnly("com.squareup.okhttp3:mockwebserver3-junit5:4.12.0") ``` 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 d0c0982162d3..038b4a1f08d1 100644 --- a/mockwebserver/README.md +++ b/mockwebserver/README.md @@ -142,7 +142,7 @@ server.setDispatcher(dispatcher); ### Download ```kotlin -testImplementation("com.squareup.okhttp3:mockwebserver:4.11.0") +testImplementation("com.squareup.okhttp3:mockwebserver:4.12.0") ``` ### License diff --git a/okhttp-android/README.md b/okhttp-android/README.md index 7ca1588830ff..46efc377dd0d 100644 --- a/okhttp-android/README.md +++ b/okhttp-android/README.md @@ -9,5 +9,5 @@ Download -------- ```kotlin -implementation("com.squareup.okhttp3:okhttp-android:4.11.0") +implementation("com.squareup.okhttp3:okhttp-android:4.12.0") ``` diff --git a/okhttp-brotli/README.md b/okhttp-brotli/README.md index de39ff776380..36f9ef6dce5c 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.11.0") +implementation("com.squareup.okhttp3:okhttp-brotli:4.12.0") ``` [1]: https://github.com/google/brotli diff --git a/okhttp-dnsoverhttps/README.md b/okhttp-dnsoverhttps/README.md index fa99b6530e54..3efbfa65b0ce 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.11.0") +testImplementation("com.squareup.okhttp3:okhttp-dnsoverhttps:4.12.0") ``` ### Usage diff --git a/okhttp-java-net-cookiejar/README.md b/okhttp-java-net-cookiejar/README.md index d41d166fce09..af90465959dd 100644 --- a/okhttp-java-net-cookiejar/README.md +++ b/okhttp-java-net-cookiejar/README.md @@ -7,5 +7,5 @@ This used to be part of `okhttp-urlconnection` ### Download ```kotlin -testImplementation("com.squareup.okhttp3:okhttp-java-net-cookiehandler:4.11.0") +testImplementation("com.squareup.okhttp3:okhttp-java-net-cookiehandler:4.12.0") ``` diff --git a/okhttp-logging-interceptor/README.md b/okhttp-logging-interceptor/README.md index 358ba23aa70f..9cead3626774 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.11.0") +implementation("com.squareup.okhttp3:logging-interceptor:4.12.0") ``` diff --git a/okhttp-sse/README.md b/okhttp-sse/README.md index 4944a78d188a..ee58a8a191b5 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.11.0") +testImplementation("com.squareup.okhttp3:okhttp-sse:4.12.0") ``` diff --git a/okhttp-tls/README.md b/okhttp-tls/README.md index 3fbb3843c41d..74d537f2fde9 100644 --- a/okhttp-tls/README.md +++ b/okhttp-tls/README.md @@ -225,7 +225,7 @@ Download -------- ```kotlin -implementation("com.squareup.okhttp3:okhttp-tls:4.11.0") +implementation("com.squareup.okhttp3:okhttp-tls:4.12.0") ``` [held_certificate]: https://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 59237d6dad6f..eeecad6fa868 100644 --- a/okhttp-urlconnection/README.md +++ b/okhttp-urlconnection/README.md @@ -8,5 +8,5 @@ This module is obsolete; prefer `okhttp-java-net-cookiejar`. ### Download ```kotlin -testImplementation("com.squareup.okhttp3:okhttp-urlconnection:4.11.0") +testImplementation("com.squareup.okhttp3:okhttp-urlconnection:4.12.0") ```