@@ -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-alpha.2 "
87+ id(" com.apollographql.apollo3" ) version " 4.0.0-alpha.3 "
8888}
8989```
9090
9191Add the runtime dependency:
9292
9393``` kotlin
9494dependencies {
95- implementation(" com.apollographql.apollo3:apollo-runtime:4.0.0-alpha.2 " )
95+ implementation(" com.apollographql.apollo3:apollo-runtime:4.0.0-alpha.3 " )
9696}
9797```
9898
@@ -182,21 +182,21 @@ Releases are hosted on [Maven Central](https://repo1.maven.org/maven2/com/apollo
182182
183183``` kotlin
184184plugins {
185- id(" com.apollographql.apollo3" ) version " 4.0.0-alpha.2 "
185+ id(" com.apollographql.apollo3" ) version " 4.0.0-alpha.3 "
186186}
187187
188188repositories {
189189 mavenCentral()
190190}
191191
192192dependencies {
193- implementation(" com.apollographql.apollo3:apollo-runtime:4.0.0-alpha.2 " )
193+ implementation(" com.apollographql.apollo3:apollo-runtime:4.0.0-alpha.3 " )
194194
195195 // optional: if you want to use the normalized cache
196- implementation(" com.apollographql.apollo3:apollo-normalized-cache-sqlite:4.0.0-alpha.2 " )
196+ implementation(" com.apollographql.apollo3:apollo-normalized-cache-sqlite:4.0.0-alpha.3 " )
197197 // optional: if you just want the generated models and parsers and write your own HTTP code/cache code, you can remove apollo-runtime
198198 // and use apollo-api instead
199- implementation(" com.apollographql.apollo3:apollo-api:4.0.0-alpha.2 " )
199+ implementation(" com.apollographql.apollo3:apollo-api:4.0.0-alpha.3 " )
200200}
201201```
202202
@@ -227,7 +227,7 @@ pluginManagement {
227227}
228228```
229229
230- And then use the ` 4.0.0-alpha.3 -SNAPSHOT ` version for the plugin and libraries.
230+ And then use the ` 4.0.0-alpha.4 -SNAPSHOT ` version for the plugin and libraries.
231231
232232### Android Studio / IntelliJ plugin
233233
0 commit comments