@@ -120,10 +120,10 @@ Releases
120120
121121Our [ change log] [ changelog ] has release history.
122122
123- The latest release is available on [ Maven Central] ( https://search.maven.org/artifact/com.squareup.okhttp3/okhttp/5.0 .0/jar ) .
123+ The latest release is available on [ Maven Central] ( https://search.maven.org/artifact/com.squareup.okhttp3/okhttp/5.1 .0/jar ) .
124124
125125``` kotlin
126- implementation(" com.squareup.okhttp3:okhttp:5.0 .0" )
126+ implementation(" com.squareup.okhttp3:okhttp:5.1 .0" )
127127```
128128
129129Snapshot builds are [ available] [ snap ] . [ R8 and ProGuard] [ r8_proguard ] rules are available.
@@ -133,7 +133,7 @@ Also, we have a [bill of materials (BOM)][bom] available to help you keep OkHttp
133133``` kotlin
134134 dependencies {
135135 // define a BOM and its version
136- implementation(platform(" com.squareup.okhttp3:okhttp-bom:5.0 .0" ))
136+ implementation(platform(" com.squareup.okhttp3:okhttp-bom:5.1 .0" ))
137137
138138 // define any required OkHttp artifacts without version
139139 implementation(" com.squareup.okhttp3:okhttp" )
@@ -146,10 +146,10 @@ MockWebServer
146146
147147OkHttp includes a library for testing HTTP, HTTPS, and HTTP/2 clients.
148148
149- The latest release is available on [ Maven Central] ( https://search.maven.org/artifact/com.squareup.okhttp3/mockwebserver/5.0 .0/jar ) .
149+ The latest release is available on [ Maven Central] ( https://search.maven.org/artifact/com.squareup.okhttp3/mockwebserver/5.1 .0/jar ) .
150150
151151``` kotlin
152- testImplementation(" com.squareup.okhttp3:mockwebserver3:5.0 .0" )
152+ testImplementation(" com.squareup.okhttp3:mockwebserver3:5.1 .0" )
153153```
154154
155155MockWebServer is used for firstly for internal testing, and for basic testing of apps using OkHttp client.
0 commit comments