diff --git a/README.md b/README.md index 65e9846efd4d..381bb02d5569 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.9.2/jar). +The latest release is available on [Maven Central](https://search.maven.org/artifact/com.squareup.okhttp3/okhttp/4.9.3/jar). ```kotlin -implementation("com.squareup.okhttp3:okhttp:4.9.2") +implementation("com.squareup.okhttp3:okhttp:4.9.3") ``` 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.9.2/jar). +The latest release is available on [Maven Central](https://search.maven.org/artifact/com.squareup.okhttp3/mockwebserver/4.9.3/jar). ```kotlin -testImplementation("com.squareup.okhttp3:mockwebserver:4.9.2") +testImplementation("com.squareup.okhttp3:mockwebserver:4.9.3") ``` License diff --git a/build.gradle b/build.gradle index 1f74c4a3083c..a28e37398794 100644 --- a/build.gradle +++ b/build.gradle @@ -89,7 +89,7 @@ ext.publishedArtifactId = { project -> allprojects { group = 'com.squareup.okhttp3' project.ext.artifactId = rootProject.ext.publishedArtifactId(project) - version = '4.9.3-SNAPSHOT' + version = '4.9.3' repositories { mavenCentral() diff --git a/mockwebserver/README.md b/mockwebserver/README.md index 794faa7317e4..c51ae5589398 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.2") +testImplementation("com.squareup.okhttp3:mockwebserver:4.9.3") ``` ### License diff --git a/okhttp-brotli/README.md b/okhttp-brotli/README.md index 44cd13bc9c06..c9d01c0efa6b 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.2") +implementation("com.squareup.okhttp3:okhttp-brotli:4.9.3") ``` [1]: https://github.com/google/brotli diff --git a/okhttp-dnsoverhttps/README.md b/okhttp-dnsoverhttps/README.md index e5666c8361eb..0e02452e6d7a 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.9.2") +testImplementation("com.squareup.okhttp3:okhttp-dnsoverhttps:4.9.3") ``` diff --git a/okhttp-logging-interceptor/README.md b/okhttp-logging-interceptor/README.md index 0603ade9fcf3..8822e8d6cb5c 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.2") +implementation("com.squareup.okhttp3:logging-interceptor:4.9.3") ``` diff --git a/okhttp-sse/README.md b/okhttp-sse/README.md index a9f07b46d3a3..b22cd5a2bbbe 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.2") +testImplementation("com.squareup.okhttp3:okhttp-sse:4.9.3") ``` diff --git a/okhttp-tls/README.md b/okhttp-tls/README.md index d6b46ebce6c7..0212a5b3996e 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.2") +implementation("com.squareup.okhttp3:okhttp-tls:4.9.3") ``` [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 c71fc8f3bc25..7aaaf6763149 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.2") +testImplementation("com.squareup.okhttp3:okhttp-urlconnection:4.9.3") ```