@@ -120,10 +120,10 @@ Releases
120
120
121
121
Our [ change log] [ changelog ] has release history.
122
122
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 ) .
124
124
125
125
``` kotlin
126
- implementation(" com.squareup.okhttp3:okhttp:5.0 .0" )
126
+ implementation(" com.squareup.okhttp3:okhttp:5.1 .0" )
127
127
```
128
128
129
129
Snapshot 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
133
133
``` kotlin
134
134
dependencies {
135
135
// 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" ))
137
137
138
138
// define any required OkHttp artifacts without version
139
139
implementation(" com.squareup.okhttp3:okhttp" )
@@ -146,10 +146,10 @@ MockWebServer
146
146
147
147
OkHttp includes a library for testing HTTP, HTTPS, and HTTP/2 clients.
148
148
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 ) .
150
150
151
151
``` kotlin
152
- testImplementation(" com.squareup.okhttp3:mockwebserver3:5.0 .0" )
152
+ testImplementation(" com.squareup.okhttp3:mockwebserver3:5.1 .0" )
153
153
```
154
154
155
155
MockWebServer is used for firstly for internal testing, and for basic testing of apps using OkHttp client.
0 commit comments