Skip to content

Commit fec1564

Browse files
authored
release 4.0.0-alpha.3 (#5168)
1 parent be9fba9 commit fec1564

15 files changed

+33
-33
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -84,15 +84,15 @@ Add the plugin to your `build.gradle.kts`:
8484

8585
```kotlin
8686
plugins {
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

9191
Add the runtime dependency:
9292

9393
```kotlin
9494
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")
9696
}
9797
```
9898

@@ -182,21 +182,21 @@ Releases are hosted on [Maven Central](https://repo1.maven.org/maven2/com/apollo
182182

183183
```kotlin
184184
plugins {
185-
id("com.apollographql.apollo3") version "4.0.0-alpha.2"
185+
id("com.apollographql.apollo3") version "4.0.0-alpha.3"
186186
}
187187

188188
repositories {
189189
mavenCentral()
190190
}
191191

192192
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")
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

docs/source/advanced/apollo-ast.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Add the `apollo-ast` dependency to your project:
2121
dependencies {
2222
// ...
2323

24-
implementation("com.apollographql.apollo3:apollo-ast:4.0.0-alpha.2")
24+
implementation("com.apollographql.apollo3:apollo-ast:4.0.0-alpha.3")
2525
}
2626
```
2727

docs/source/advanced/java.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ dependencies {
2626
// ...
2727

2828
// Use apollo-runtime-java instead of apollo-runtime
29-
implementation("com.apollographql.apollo3:apollo-runtime-java:4.0.0-alpha.2")
29+
implementation("com.apollographql.apollo3:apollo-runtime-java:4.0.0-alpha.3")
3030
}
3131
```
3232

docs/source/advanced/no-runtime.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ title: Using the models without apollo-runtime
77
For this, remove the `com.apollographql.apollo3:apollo-runtime` dependency and replace it with:
88

99
```kotlin title="build.gradle"
10-
implementation("com.apollographql.apollo3:apollo-api:4.0.0-alpha.2")
10+
implementation("com.apollographql.apollo3:apollo-api:4.0.0-alpha.3")
1111
```
1212

1313
## Composing an HTTP request body

docs/source/advanced/rxjava.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ dependencies {
1313
// ...
1414

1515
// For RxJava 2
16-
implementation("com.apollographql.apollo3:apollo-rx2-support-java:4.0.0-alpha.2")
16+
implementation("com.apollographql.apollo3:apollo-rx2-support-java:4.0.0-alpha.3")
1717

1818
// For RxJava 3
19-
implementation("com.apollographql.apollo3:apollo-rx3-support-java:4.0.0-alpha.2")
19+
implementation("com.apollographql.apollo3:apollo-rx3-support-java:4.0.0-alpha.3")
2020
}
2121
```
2222

@@ -25,10 +25,10 @@ dependencies {
2525
// ...
2626

2727
// For RxJava 2
28-
implementation("com.apollographql.apollo3:apollo-rx2-support:4.0.0-alpha.2")
28+
implementation("com.apollographql.apollo3:apollo-rx2-support:4.0.0-alpha.3")
2929

3030
// For RxJava 3
31-
implementation("com.apollographql.apollo3:apollo-rx3-support:4.0.0-alpha.2")
31+
implementation("com.apollographql.apollo3:apollo-rx3-support:4.0.0-alpha.3")
3232
}
3333
```
3434

docs/source/caching/http-cache.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ To enable HTTP cache support, add the dependency to your project's `build.gradle
1313

1414
```kotlin title="build.gradle[.kts]"
1515
dependencies {
16-
implementation("com.apollographql.apollo3:apollo-http-cache:4.0.0-alpha.2")
16+
implementation("com.apollographql.apollo3:apollo-http-cache:4.0.0-alpha.3")
1717
}
1818
```
1919

docs/source/caching/normalized-cache.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Apollo Kotlin's `MemoryCache` is a normalized, in-memory cache for storing objec
7070

7171
```kotlin title="build.gradle[.kts]"
7272
dependencies {
73-
implementation("com.apollographql.apollo3:apollo-normalized-cache:4.0.0-alpha.2")
73+
implementation("com.apollographql.apollo3:apollo-normalized-cache:4.0.0-alpha.3")
7474
}
7575
```
7676

@@ -106,7 +106,7 @@ To enable SQLite cache support, add the `apollo-normalized-cache-sqlite` depende
106106

107107
```kotlin title="build.gradle.kts"
108108
dependencies {
109-
implementation("com.apollographql.apollo3:apollo-normalized-cache-sqlite:4.0.0-alpha.2")
109+
implementation("com.apollographql.apollo3:apollo-normalized-cache-sqlite:4.0.0-alpha.3")
110110
}
111111
```
112112

docs/source/essentials/custom-scalars.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ For example, to use `DateAdapter`, configure your Gradle scripts like so:
150150

151151
```kotlin title="build.gradle[.kts]"
152152
dependencies {
153-
implementation("com.apollographql.apollo3:apollo-adapters:4.0.0-alpha.2")
153+
implementation("com.apollographql.apollo3:apollo-adapters:4.0.0-alpha.3")
154154
}
155155

156156
apollo {

docs/source/index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -68,15 +68,15 @@ Add the plugin to your `build.gradle.kts`:
6868

6969
```kotlin
7070
plugins {
71-
id("com.apollographql.apollo3") version "4.0.0-alpha.2"
71+
id("com.apollographql.apollo3") version "4.0.0-alpha.3"
7272
}
7373
```
7474

7575
Add the runtime dependency:
7676

7777
```kotlin
7878
dependencies {
79-
implementation("com.apollographql.apollo3:apollo-runtime:4.0.0-alpha.2")
79+
implementation("com.apollographql.apollo3:apollo-runtime:4.0.0-alpha.3")
8080
}
8181
```
8282

@@ -167,21 +167,21 @@ Releases are hosted on [Maven Central](https://repo1.maven.org/maven2/com/apollo
167167

168168
```kotlin
169169
plugins {
170-
id("com.apollographql.apollo3") version "4.0.0-alpha.2"
170+
id("com.apollographql.apollo3") version "4.0.0-alpha.3"
171171
}
172172

173173
repositories {
174174
mavenCentral()
175175
}
176176

177177
dependencies {
178-
implementation("com.apollographql.apollo3:apollo-runtime:4.0.0-alpha.2")
178+
implementation("com.apollographql.apollo3:apollo-runtime:4.0.0-alpha.3")
179179

180180
// optional: if you want to use the normalized cache
181-
implementation("com.apollographql.apollo3:apollo-normalized-cache-sqlite:4.0.0-alpha.2")
181+
implementation("com.apollographql.apollo3:apollo-normalized-cache-sqlite:4.0.0-alpha.3")
182182
// optional: if you just want the generated models and parsers and write your own HTTP code/cache code, you can remove apollo-runtime
183183
// and use apollo-api instead
184-
implementation("com.apollographql.apollo3:apollo-api:4.0.0-alpha.2")
184+
implementation("com.apollographql.apollo3:apollo-api:4.0.0-alpha.3")
185185
}
186186
```
187187

@@ -211,7 +211,7 @@ pluginManagement {
211211
}
212212
}
213213
```
214-
And then use the `4.0.0-alpha.3-SNAPSHOT` version for the plugin and libraries.
214+
And then use the `4.0.0-alpha.4-SNAPSHOT` version for the plugin and libraries.
215215

216216
### Android Studio / IntelliJ plugin
217217

docs/source/testing/mocking-graphql-responses.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Add the dependency to your project's `build.gradle` file:
1010

1111
```kotlin title="build.gradle[.kts]"
1212
dependencies {
13-
testImplementation("com.apollographql.apollo3:apollo-testing-support:4.0.0-alpha.2")
13+
testImplementation("com.apollographql.apollo3:apollo-testing-support:4.0.0-alpha.3")
1414
}
1515

1616
// Also add jcenter() to your repositories

0 commit comments

Comments
 (0)