@@ -84,15 +84,15 @@ Add the plugin to your `build.gradle.kts`:
8484
8585``` kotlin
8686plugins {
87- id(" com.apollographql.apollo3" ) version " 4.0.0-beta.3 "
87+ id(" com.apollographql.apollo3" ) version " 4.0.0-beta.4 "
8888}
8989```
9090
9191Add the runtime dependency:
9292
9393``` kotlin
9494dependencies {
95- implementation(" com.apollographql.apollo3:apollo-runtime:4.0.0-beta.3 " )
95+ implementation(" com.apollographql.apollo3:apollo-runtime:4.0.0-beta.4 " )
9696}
9797```
9898
@@ -183,21 +183,21 @@ Releases are hosted on [Maven Central](https://repo1.maven.org/maven2/com/apollo
183183
184184``` kotlin
185185plugins {
186- id(" com.apollographql.apollo3" ) version " 4.0.0-beta.3 "
186+ id(" com.apollographql.apollo3" ) version " 4.0.0-beta.4 "
187187}
188188
189189repositories {
190190 mavenCentral()
191191}
192192
193193dependencies {
194- implementation(" com.apollographql.apollo3:apollo-runtime:4.0.0-beta.3 " )
194+ implementation(" com.apollographql.apollo3:apollo-runtime:4.0.0-beta.4 " )
195195
196196 // optional: if you want to use the normalized cache
197- implementation(" com.apollographql.apollo3:apollo-normalized-cache-sqlite:4.0.0-beta.3 " )
197+ implementation(" com.apollographql.apollo3:apollo-normalized-cache-sqlite:4.0.0-beta.4 " )
198198 // optional: if you just want the generated models and parsers and write your own HTTP code/cache code, you can remove apollo-runtime
199199 // and use apollo-api instead
200- implementation(" com.apollographql.apollo3:apollo-api:4.0.0-beta.3 " )
200+ implementation(" com.apollographql.apollo3:apollo-api:4.0.0-beta.4 " )
201201}
202202```
203203
@@ -228,7 +228,7 @@ pluginManagement {
228228}
229229```
230230
231- And then use the ` 4.0.0-beta.4 -SNAPSHOT ` version for the plugin and libraries.
231+ And then use the ` 4.0.0-beta.5 -SNAPSHOT ` version for the plugin and libraries.
232232
233233### Android Studio / IntelliJ plugin
234234
0 commit comments