Skip to content

Commit 68a106d

Browse files
committed
Prepare for release 4.11.0.
1 parent 19c634f commit 68a106d

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -99,10 +99,10 @@ Releases
9999

100100
Our [change log][changelog] has release history.
101101

102-
The latest release is available on [Maven Central](https://search.maven.org/artifact/com.squareup.okhttp3/okhttp/4.10.0/jar).
102+
The latest release is available on [Maven Central](https://search.maven.org/artifact/com.squareup.okhttp3/okhttp/4.11.0/jar).
103103

104104
```kotlin
105-
implementation("com.squareup.okhttp3:okhttp:4.10.0")
105+
implementation("com.squareup.okhttp3:okhttp:4.11.0")
106106
```
107107

108108
Snapshot builds are [available][snap]. [R8 and ProGuard][r8_proguard] rules are available.
@@ -113,10 +113,10 @@ MockWebServer
113113

114114
OkHttp includes a library for testing HTTP, HTTPS, and HTTP/2 clients.
115115

116-
The latest release is available on [Maven Central](https://search.maven.org/artifact/com.squareup.okhttp3/mockwebserver/4.10.0/jar).
116+
The latest release is available on [Maven Central](https://search.maven.org/artifact/com.squareup.okhttp3/mockwebserver/4.11.0/jar).
117117

118118
```kotlin
119-
testImplementation("com.squareup.okhttp3:mockwebserver:4.10.0")
119+
testImplementation("com.squareup.okhttp3:mockwebserver:4.11.0")
120120
```
121121

122122
License

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ ext.publishedArtifactId = { project ->
9090
allprojects {
9191
group = 'com.squareup.okhttp3'
9292
project.ext.artifactId = rootProject.ext.publishedArtifactId(project)
93-
version = '4.11.0-SNAPSHOT'
93+
version = '4.11.0'
9494

9595
repositories {
9696
mavenCentral()

mockwebserver/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ server.setDispatcher(dispatcher);
142142
### Download
143143

144144
```kotlin
145-
testImplementation("com.squareup.okhttp3:mockwebserver:4.10.0")
145+
testImplementation("com.squareup.okhttp3:mockwebserver:4.11.0")
146146
```
147147

148148
### License

okhttp-brotli/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ OkHttpClient client = new OkHttpClient.Builder()
1414
```
1515

1616
```kotlin
17-
implementation("com.squareup.okhttp3:okhttp-brotli:4.10.0")
17+
implementation("com.squareup.okhttp3:okhttp-brotli:4.11.0")
1818
```
1919

2020
[1]: https://github.com/google/brotli

okhttp-dnsoverhttps/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ API is not considered stable and may change at any time.
77
### Download
88

99
```kotlin
10-
testImplementation("com.squareup.okhttp3:okhttp-dnsoverhttps:4.10.0")
10+
testImplementation("com.squareup.okhttp3:okhttp-dnsoverhttps:4.11.0")
1111
```

okhttp-logging-interceptor/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Download
3737
--------
3838

3939
```kotlin
40-
implementation("com.squareup.okhttp3:logging-interceptor:4.10.0")
40+
implementation("com.squareup.okhttp3:logging-interceptor:4.11.0")
4141
```
4242

4343

okhttp-sse/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ API is not considered stable and may change at any time.
77
### Download
88

99
```kotlin
10-
testImplementation("com.squareup.okhttp3:okhttp-sse:4.10.0")
10+
testImplementation("com.squareup.okhttp3:okhttp-sse:4.11.0")
1111
```

okhttp-tls/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ Download
227227
--------
228228

229229
```kotlin
230-
implementation("com.squareup.okhttp3:okhttp-tls:4.10.0")
230+
implementation("com.squareup.okhttp3:okhttp-tls:4.11.0")
231231
```
232232

233233
[held_certificate]: http://square.github.io/okhttp/4.x/okhttp-tls/okhttp3.tls/-held-certificate/

okhttp-urlconnection/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ This module integrates OkHttp with `Authenticator` and `CookieHandler` from `jav
66
### Download
77

88
```kotlin
9-
testImplementation("com.squareup.okhttp3:okhttp-urlconnection:4.10.0")
9+
testImplementation("com.squareup.okhttp3:okhttp-urlconnection:4.11.0")
1010
```

0 commit comments

Comments
 (0)