@@ -88,15 +88,15 @@ Add the plugin to your `build.gradle.kts`:
88
88
89
89
``` kotlin
90
90
plugins {
91
- id(" com.apollographql.apollo3" ) version " 4.0.0-beta.7 "
91
+ id(" com.apollographql.apollo3" ) version " 4.0.0-rc.1 "
92
92
}
93
93
```
94
94
95
95
Add the runtime dependency:
96
96
97
97
``` kotlin
98
98
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 " )
100
100
}
101
101
```
102
102
@@ -187,21 +187,21 @@ Releases are hosted on [Maven Central](https://repo1.maven.org/maven2/com/apollo
187
187
188
188
``` kotlin
189
189
plugins {
190
- id(" com.apollographql.apollo3" ) version " 4.0.0-beta.7 "
190
+ id(" com.apollographql.apollo3" ) version " 4.0.0-rc.1 "
191
191
}
192
192
193
193
repositories {
194
194
mavenCentral()
195
195
}
196
196
197
197
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 " )
199
199
200
200
// 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 " )
202
202
// Optional: if you just want the generated models and parsers and write your own HTTP code/cache code, you can remove apollo-runtime
203
203
// 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 " )
205
205
}
206
206
```
207
207
@@ -232,7 +232,7 @@ pluginManagement {
232
232
}
233
233
```
234
234
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.
236
236
237
237
These snapshots are updated on each push to ` main ` .
238
238
0 commit comments