You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -159,29 +159,29 @@ Installation instructions and more information can be found [here](testing/andro
159
159
160
160
## Releases
161
161
162
-
The latest version is `4.0.0-rc.1`.
162
+
The latest version is `4.0.0-rc.2`.
163
163
164
164
Check the [changelog](https://github.com/apollographql/apollo-kotlin/releases) for the release history.
165
165
166
166
Releases are hosted on [Maven Central](https://repo1.maven.org/maven2/com/apollographql/apollo/). The plugin is additionally hosted on the [Gradle Plugin Portal](https://plugins.gradle.org/plugin/com.apollographql.apollo)
167
167
168
168
```kotlin
169
169
plugins {
170
-
id("com.apollographql.apollo") version "4.0.0-rc.1"
170
+
id("com.apollographql.apollo") version "4.0.0-rc.2"
Copy file name to clipboardExpand all lines: docs/source/tutorial/01-configure-project.mdx
+3-3
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ Now let's add Apollo Kotlin to the project.
35
35
36
36
You can find the latest version of Apollo Kotlin from the [GitHub releases page](https://github.com/apollographql/apollo-kotlin/releases). It is also displayed at the top of the [apollo-kotlin repo](https://github.com/apollographql/apollo-kotlin/).
37
37
38
-
This tutorial uses `4.0.0-rc.1` because it is the latest version at the time of writing. Feel free to use a more recent version if one is available.
38
+
This tutorial uses `4.0.0-rc.2` because it is the latest version at the time of writing. Feel free to use a more recent version if one is available.
39
39
40
40
## Apply the plugin
41
41
@@ -45,7 +45,7 @@ Apply the Apollo plugin in `app/build.gradle.kts`. There are two `build.gradle.k
45
45
plugins {
46
46
id("com.android.application")
47
47
// ...
48
-
id("com.apollographql.apollo") version "4.0.0-rc.1"
48
+
id("com.apollographql.apollo") version "4.0.0-rc.2"
49
49
}
50
50
```
51
51
@@ -72,7 +72,7 @@ Now add `apollo-runtime` to the list of dependencies. This is the code that exec
Copy file name to clipboardExpand all lines: intellij-plugin/src/main/kotlin/com/apollographql/ijplugin/refactoring/migration/v3tov4/ApolloV3ToV4MigrationProcessor.kt
0 commit comments