Skip to content

Commit

Permalink
Update arrow version at index.md (#351)
Browse files Browse the repository at this point in the history
  • Loading branch information
utamori authored Jan 21, 2025
1 parent 14a0938 commit ce4c2e1
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions content/docs/learn/quickstart/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
```

Expand All @@ -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'
}
```

Expand All @@ -102,12 +102,12 @@ dependencies {
<dependency>
<groupId>io.arrow-kt</groupId>
<artifactId>arrow-core</artifactId>
<version>1.2.4</version>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>io.arrow-kt</groupId>
<artifactId>arrow-fx-coroutines</artifactId>
<version>1.2.4</version>
<version>2.0.0</version>
</dependency>
```

Expand All @@ -126,7 +126,7 @@ your Gradle build has several subprojects.

```yaml
[versions]
arrow = "1.2.4"
arrow = "2.0.0"
# other versions

[libraries]
Expand Down Expand Up @@ -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")
Expand All @@ -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'
Expand All @@ -207,7 +207,7 @@ dependencies {
<dependency>
<groupId>io.arrow-kt</groupId>
<artifactId>arrow-stack</artifactId>
<version>1.2.4</version>
<version>2.0.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down Expand Up @@ -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")
}
```

Expand All @@ -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'
}
```

Expand Down

0 comments on commit ce4c2e1

Please sign in to comment.