@@ -84,15 +84,15 @@ Add the plugin to your `build.gradle.kts`:
84
84
85
85
``` kotlin
86
86
plugins {
87
- id(" com.apollographql.apollo3" ) version " 4.0.0-alpha.2 "
87
+ id(" com.apollographql.apollo3" ) version " 4.0.0-alpha.3 "
88
88
}
89
89
```
90
90
91
91
Add the runtime dependency:
92
92
93
93
``` kotlin
94
94
dependencies {
95
- implementation(" com.apollographql.apollo3:apollo-runtime:4.0.0-alpha.2 " )
95
+ implementation(" com.apollographql.apollo3:apollo-runtime:4.0.0-alpha.3 " )
96
96
}
97
97
```
98
98
@@ -182,21 +182,21 @@ Releases are hosted on [Maven Central](https://repo1.maven.org/maven2/com/apollo
182
182
183
183
``` kotlin
184
184
plugins {
185
- id(" com.apollographql.apollo3" ) version " 4.0.0-alpha.2 "
185
+ id(" com.apollographql.apollo3" ) version " 4.0.0-alpha.3 "
186
186
}
187
187
188
188
repositories {
189
189
mavenCentral()
190
190
}
191
191
192
192
dependencies {
193
- implementation(" com.apollographql.apollo3:apollo-runtime:4.0.0-alpha.2 " )
193
+ implementation(" com.apollographql.apollo3:apollo-runtime:4.0.0-alpha.3 " )
194
194
195
195
// 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 " )
197
197
// optional: if you just want the generated models and parsers and write your own HTTP code/cache code, you can remove apollo-runtime
198
198
// 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 " )
200
200
}
201
201
```
202
202
@@ -227,7 +227,7 @@ pluginManagement {
227
227
}
228
228
```
229
229
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.
231
231
232
232
### Android Studio / IntelliJ plugin
233
233
0 commit comments