Skip to content

Commit e3f72aa

Browse files
authored
release 4.0.0-rc.1 (#6034)
1 parent fcd0a86 commit e3f72aa

File tree

16 files changed

+43
-43
lines changed

16 files changed

+43
-43
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -88,15 +88,15 @@ Add the plugin to your `build.gradle.kts`:
8888

8989
```kotlin
9090
plugins {
91-
id("com.apollographql.apollo3") version "4.0.0-beta.7"
91+
id("com.apollographql.apollo3") version "4.0.0-rc.1"
9292
}
9393
```
9494

9595
Add the runtime dependency:
9696

9797
```kotlin
9898
dependencies {
99-
implementation("com.apollographql.apollo3:apollo-runtime:4.0.0-beta.7")
99+
implementation("com.apollographql.apollo3:apollo-runtime:4.0.0-rc.1")
100100
}
101101
```
102102

@@ -187,21 +187,21 @@ Releases are hosted on [Maven Central](https://repo1.maven.org/maven2/com/apollo
187187

188188
```kotlin
189189
plugins {
190-
id("com.apollographql.apollo3") version "4.0.0-beta.7"
190+
id("com.apollographql.apollo3") version "4.0.0-rc.1"
191191
}
192192

193193
repositories {
194194
mavenCentral()
195195
}
196196

197197
dependencies {
198-
implementation("com.apollographql.apollo3:apollo-runtime:4.0.0-beta.7")
198+
implementation("com.apollographql.apollo3:apollo-runtime:4.0.0-rc.1")
199199

200200
// Optional: if you want to use the normalized cache
201-
implementation("com.apollographql.apollo3:apollo-normalized-cache-sqlite:4.0.0-beta.7")
201+
implementation("com.apollographql.apollo3:apollo-normalized-cache-sqlite:4.0.0-rc.1")
202202
// Optional: if you just want the generated models and parsers and write your own HTTP code/cache code, you can remove apollo-runtime
203203
// and use apollo-api instead
204-
implementation("com.apollographql.apollo3:apollo-api:4.0.0-beta.7")
204+
implementation("com.apollographql.apollo3:apollo-api:4.0.0-rc.1")
205205
}
206206
```
207207

@@ -232,7 +232,7 @@ pluginManagement {
232232
}
233233
```
234234

235-
And then use the `4.0.0-beta.8-SNAPSHOT` version for the plugin and libraries.
235+
And then use the `4.0.0-rc.2-SNAPSHOT` version for the plugin and libraries.
236236

237237
These snapshots are updated on each push to `main`.
238238

docs/source/advanced/apollo-ast.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Add the `apollo-ast` dependency to your project:
2121
dependencies {
2222
// ...
2323

24-
implementation("com.apollographql.apollo3:apollo-ast:4.0.0-beta.7")
24+
implementation("com.apollographql.apollo3:apollo-ast:4.0.0-rc.1")
2525
}
2626
```
2727

docs/source/advanced/compiler-plugins.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ plugins {
3333

3434
dependencies {
3535
// Add apollo-compiler as a dependency
36-
implementation("com.apollographql.apollo3:apollo-compiler:4.0.0-beta.7")
36+
implementation("com.apollographql.apollo3:apollo-compiler:4.0.0-rc.1")
3737
}
3838
```
3939

docs/source/advanced/http-engine.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Additionally, an optional implementation based on [Ktor](https://ktor.io/) for a
1818
```kotlin title="build.gradle[.kts]"
1919
dependencies {
2020
// ...
21-
implementation("com.apollographql.apollo3:apollo-engine-ktor:4.0.0-beta.7")
21+
implementation("com.apollographql.apollo3:apollo-engine-ktor:4.0.0-rc.1")
2222
}
2323
```
2424

docs/source/advanced/no-runtime.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ title: Using the models without apollo-runtime
77
For this, remove the `com.apollographql.apollo3:apollo-runtime` dependency and replace it with:
88

99
```kotlin title="build.gradle"
10-
implementation("com.apollographql.apollo3:apollo-api:4.0.0-beta.7")
10+
implementation("com.apollographql.apollo3:apollo-api:4.0.0-rc.1")
1111
```
1212

1313
## Composing an HTTP request body

docs/source/caching/http-cache.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ To enable HTTP cache support, add the dependency to your project's `build.gradle
1717

1818
```kotlin title="build.gradle[.kts]"
1919
dependencies {
20-
implementation("com.apollographql.apollo3:apollo-http-cache:4.0.0-beta.7")
20+
implementation("com.apollographql.apollo3:apollo-http-cache:4.0.0-rc.1")
2121
}
2222
```
2323

docs/source/caching/normalized-cache.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Apollo Kotlin's `MemoryCache` is a normalized, in-memory cache for storing objec
7474

7575
```kotlin title="build.gradle[.kts]"
7676
dependencies {
77-
implementation("com.apollographql.apollo3:apollo-normalized-cache:4.0.0-beta.7")
77+
implementation("com.apollographql.apollo3:apollo-normalized-cache:4.0.0-rc.1")
7878
}
7979
```
8080

@@ -110,7 +110,7 @@ To enable SQLite cache support, add the `apollo-normalized-cache-sqlite` depende
110110

111111
```kotlin title="build.gradle.kts"
112112
dependencies {
113-
implementation("com.apollographql.apollo3:apollo-normalized-cache-sqlite:4.0.0-beta.7")
113+
implementation("com.apollographql.apollo3:apollo-normalized-cache-sqlite:4.0.0-rc.1")
114114
}
115115
```
116116

docs/source/index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -68,15 +68,15 @@ Add the plugin to your `build.gradle.kts`:
6868

6969
```kotlin
7070
plugins {
71-
id("com.apollographql.apollo3") version "4.0.0-beta.7"
71+
id("com.apollographql.apollo3") version "4.0.0-rc.1"
7272
}
7373
```
7474

7575
Add the runtime dependency:
7676

7777
```kotlin
7878
dependencies {
79-
implementation("com.apollographql.apollo3:apollo-runtime:4.0.0-beta.7")
79+
implementation("com.apollographql.apollo3:apollo-runtime:4.0.0-rc.1")
8080
}
8181
```
8282

@@ -167,21 +167,21 @@ Releases are hosted on [Maven Central](https://repo1.maven.org/maven2/com/apollo
167167

168168
```kotlin
169169
plugins {
170-
id("com.apollographql.apollo3") version "4.0.0-beta.7"
170+
id("com.apollographql.apollo3") version "4.0.0-rc.1"
171171
}
172172

173173
repositories {
174174
mavenCentral()
175175
}
176176

177177
dependencies {
178-
implementation("com.apollographql.apollo3:apollo-runtime:4.0.0-beta.7")
178+
implementation("com.apollographql.apollo3:apollo-runtime:4.0.0-rc.1")
179179

180180
// Optional: if you want to use the normalized cache
181-
implementation("com.apollographql.apollo3:apollo-normalized-cache-sqlite:4.0.0-beta.7")
181+
implementation("com.apollographql.apollo3:apollo-normalized-cache-sqlite:4.0.0-rc.1")
182182
// Optional: if you just want the generated models and parsers and write your own HTTP code/cache code, you can remove apollo-runtime
183183
// and use apollo-api instead
184-
implementation("com.apollographql.apollo3:apollo-api:4.0.0-beta.7")
184+
implementation("com.apollographql.apollo3:apollo-api:4.0.0-rc.1")
185185
}
186186
```
187187

@@ -212,7 +212,7 @@ pluginManagement {
212212
}
213213
```
214214

215-
And then use the `4.0.0-beta.8-SNAPSHOT` version for the plugin and libraries.
215+
And then use the `4.0.0-rc.2-SNAPSHOT` version for the plugin and libraries.
216216

217217
These snapshots are updated on each push to `main`.
218218

docs/source/testing/apollo-debug-server.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dependencies {
1717
// ...
1818

1919
// For security, add the dependency to your debug builds only
20-
debugImplementation("com.apollographql.apollo3:apollo-debug-server:4.0.0-beta.7")
20+
debugImplementation("com.apollographql.apollo3:apollo-debug-server:4.0.0-rc.1")
2121
}
2222
```
2323

docs/source/testing/mocking-graphql-responses.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Add the dependency to your project's `build.gradle` file:
1616

1717
```kotlin title="build.gradle[.kts]"
1818
dependencies {
19-
testImplementation("com.apollographql.apollo3:apollo-testing-support:4.0.0-beta.7")
19+
testImplementation("com.apollographql.apollo3:apollo-testing-support:4.0.0-rc.1")
2020
}
2121
```
2222

0 commit comments

Comments
 (0)