diff --git a/content/docs/learn/quickstart/index.md b/content/docs/learn/quickstart/index.md
index b150a3d4..2111cc0e 100644
--- a/content/docs/learn/quickstart/index.md
+++ b/content/docs/learn/quickstart/index.md
@@ -79,8 +79,8 @@ Simply include the desired library in your `dependencies` block or as a
```kotlin
dependencies {
- implementation("io.arrow-kt:arrow-core:1.2.4")
- implementation("io.arrow-kt:arrow-fx-coroutines:1.2.4")
+ implementation("io.arrow-kt:arrow-core:2.0.0")
+ implementation("io.arrow-kt:arrow-fx-coroutines:2.0.0")
}
```
@@ -89,8 +89,8 @@ dependencies {
```groovy
dependencies {
- implementation 'io.arrow-kt:arrow-core:1.2.4'
- implementation 'io.arrow-kt:arrow-fx-coroutines:1.2.4'
+ implementation 'io.arrow-kt:arrow-core:2.0.0'
+ implementation 'io.arrow-kt:arrow-fx-coroutines:2.0.0'
}
```
@@ -102,12 +102,12 @@ dependencies {
io.arrow-kt
arrow-core
- 1.2.4
+ 2.0.0
io.arrow-kt
arrow-fx-coroutines
- 1.2.4
+ 2.0.0
```
@@ -126,7 +126,7 @@ your Gradle build has several subprojects.
```yaml
[versions]
-arrow = "1.2.4"
+arrow = "2.0.0"
# other versions
[libraries]
@@ -180,7 +180,7 @@ to include `arrow-stack`, which declares versions for the rest of the components
```kotlin
dependencies {
- implementation(platform("io.arrow-kt:arrow-stack:1.2.4"))
+ implementation(platform("io.arrow-kt:arrow-stack:2.0.0"))
// no versions on libraries
implementation("io.arrow-kt:arrow-core")
implementation("io.arrow-kt:arrow-fx-coroutines")
@@ -192,7 +192,7 @@ dependencies {
```groovy
dependencies {
- implementation platform('io.arrow-kt:arrow-stack:1.2.4')
+ implementation platform('io.arrow-kt:arrow-stack:2.0.0')
// no versions on libraries
implementation 'io.arrow-kt:arrow-core'
implementation 'io.arrow-kt:arrow-fx-coroutines'
@@ -207,7 +207,7 @@ dependencies {
io.arrow-kt
arrow-stack
- 1.2.4
+ 2.0.0
pom
import
@@ -248,8 +248,8 @@ plugins {
}
dependencies {
- implementation("io.arrow-kt:arrow-optics:1.2.4")
- ksp("io.arrow-kt:arrow-optics-ksp-plugin:1.2.4")
+ implementation("io.arrow-kt:arrow-optics:2.0.0")
+ ksp("io.arrow-kt:arrow-optics-ksp-plugin:2.0.0")
}
```
@@ -262,8 +262,8 @@ plugins {
}
dependencies {
- implementation 'io.arrow-kt:arrow-optics:1.2.4'
- ksp 'io.arrow-kt:arrow-optics-ksp-plugin:1.2.4'
+ implementation 'io.arrow-kt:arrow-optics:2.0.0'
+ ksp 'io.arrow-kt:arrow-optics-ksp-plugin:2.0.0'
}
```