@@ -87,15 +87,15 @@ Add the plugin to your `build.gradle.kts`:
8787
8888``` kotlin 
8989plugins {
90-   id(" com.apollographql.apollo3"  ) version " 4.0.0-beta.6 " 
90+   id(" com.apollographql.apollo3"  ) version " 4.0.0-beta.7 " 
9191}
9292``` 
9393
9494Add the runtime dependency:
9595
9696``` kotlin 
9797dependencies {
98-   implementation(" com.apollographql.apollo3:apollo-runtime:4.0.0-beta.6 "  )
98+   implementation(" com.apollographql.apollo3:apollo-runtime:4.0.0-beta.7 "  )
9999}
100100``` 
101101
@@ -187,21 +187,21 @@ Releases are hosted on [Maven Central](https://repo1.maven.org/maven2/com/apollo
187187
188188``` kotlin 
189189plugins {
190-   id(" com.apollographql.apollo3"  ) version " 4.0.0-beta.6 " 
190+   id(" com.apollographql.apollo3"  ) version " 4.0.0-beta.7 " 
191191}
192192
193193repositories {
194194  mavenCentral()
195195}
196196
197197dependencies {
198-   implementation(" com.apollographql.apollo3:apollo-runtime:4.0.0-beta.6 "  )
198+   implementation(" com.apollographql.apollo3:apollo-runtime:4.0.0-beta.7 "  )
199199
200200  //  optional: if you want to use the normalized cache
201-   implementation(" com.apollographql.apollo3:apollo-normalized-cache-sqlite:4.0.0-beta.6 "  )
201+   implementation(" com.apollographql.apollo3:apollo-normalized-cache-sqlite:4.0.0-beta.7 "  )
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.6 "  )
204+   implementation(" com.apollographql.apollo3:apollo-api:4.0.0-beta.7 "  )
205205}
206206``` 
207207
@@ -232,7 +232,7 @@ pluginManagement {
232232}
233233``` 
234234
235- And then use the ` 4.0.0-beta.7 -SNAPSHOT `  version for the plugin and libraries.
235+ And then use the ` 4.0.0-beta.8 -SNAPSHOT `  version for the plugin and libraries.
236236
237237These snapshots are updated on each push to ` main ` .
238238
0 commit comments