@@ -123,10 +123,10 @@ Releases
123123
124124Our [ change log] [ changelog ] has release history.
125125
126- The latest release is available on [ Maven Central] ( https://search.maven.org/artifact/com.squareup.okhttp3/okhttp/5.3.0 /jar ) .
126+ The latest release is available on [ Maven Central] ( https://search.maven.org/artifact/com.squareup.okhttp3/okhttp/5.3.1 /jar ) .
127127
128128``` kotlin
129- implementation(" com.squareup.okhttp3:okhttp:5.3.0 " )
129+ implementation(" com.squareup.okhttp3:okhttp:5.3.1 " )
130130```
131131
132132Snapshot builds are [ available] [ snap ] . [ R8 and ProGuard] [ r8_proguard ] rules are available.
@@ -136,7 +136,7 @@ Also, we have a [bill of materials (BOM)][bom] available to help you keep OkHttp
136136``` kotlin
137137 dependencies {
138138 // define a BOM and its version
139- implementation(platform(" com.squareup.okhttp3:okhttp-bom:5.3.0 " ))
139+ implementation(platform(" com.squareup.okhttp3:okhttp-bom:5.3.1 " ))
140140
141141 // define any required OkHttp artifacts without version
142142 implementation(" com.squareup.okhttp3:okhttp" )
@@ -191,10 +191,10 @@ MockWebServer
191191
192192OkHttp includes a library for testing HTTP, HTTPS, and HTTP/2 clients.
193193
194- The latest release is available on [ Maven Central] ( https://search.maven.org/artifact/com.squareup.okhttp3/mockwebserver/5.3.0 /jar ) .
194+ The latest release is available on [ Maven Central] ( https://search.maven.org/artifact/com.squareup.okhttp3/mockwebserver/5.3.1 /jar ) .
195195
196196``` kotlin
197- testImplementation(" com.squareup.okhttp3:mockwebserver3:5.3.0 " )
197+ testImplementation(" com.squareup.okhttp3:mockwebserver3:5.3.1 " )
198198```
199199
200200MockWebServer is used for firstly for internal testing, and for basic testing of apps using OkHttp client.
0 commit comments