Skip to content

Commit

Permalink
Bump versions in quickstart (#217)
Browse files Browse the repository at this point in the history
  • Loading branch information
nomisRev authored Jul 12, 2023
1 parent 647bf6a commit b27f53e
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 @@ -71,8 +71,8 @@ Simply include the desired library in your `dependencies` block or as a

```kotlin
dependencies {
implementation("io.arrow-kt:arrow-core:1.2.0-RC")
implementation("io.arrow-kt:arrow-fx-coroutines:1.2.0-RC")
implementation("io.arrow-kt:arrow-core:1.2.0")
implementation("io.arrow-kt:arrow-fx-coroutines:1.2.0")
}
```

Expand All @@ -81,8 +81,8 @@ dependencies {

```groovy
dependencies {
implementation 'io.arrow-kt:arrow-core:1.2.0-RC'
implementation 'io.arrow-kt:arrow-fx-coroutines:1.2.0-RC'
implementation 'io.arrow-kt:arrow-core:1.2.0'
implementation 'io.arrow-kt:arrow-fx-coroutines:1.2.0'
}
```

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

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

```yaml
[versions]
arrow = "1.2.0-RC"
arrow = "1.2.0"
# other versions

[libraries]
Expand Down Expand Up @@ -172,7 +172,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.0-RC"))
implementation(platform("io.arrow-kt:arrow-stack:1.2.0"))
// no versions on libraries
implementation("io.arrow-kt:arrow-core")
implementation("io.arrow-kt:arrow-fx-coroutines")
Expand All @@ -184,7 +184,7 @@ dependencies {

```groovy
dependencies {
implementation platform('io.arrow-kt:arrow-stack:1.2.0-RC')
implementation platform('io.arrow-kt:arrow-stack:1.2.0')
// no versions on libraries
implementation 'io.arrow-kt:arrow-core'
implementation 'io.arrow-kt:arrow-fx-coroutines'
Expand All @@ -199,7 +199,7 @@ dependencies {
<dependency>
<groupId>io.arrow-kt</groupId>
<artifactId>arrow-stack</artifactId>
<version>1.2.0-RC</version>
<version>1.2.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down Expand Up @@ -234,8 +234,8 @@ plugins {
}

dependencies {
implementation("io.arrow-kt:arrow-optics:1.2.0-RC")
ksp("io.arrow-kt:arrow-optics-ksp-plugin:1.2.0-RC")
implementation("io.arrow-kt:arrow-optics:1.2.0")
ksp("io.arrow-kt:arrow-optics-ksp-plugin:1.2.0")
}
```

Expand All @@ -248,8 +248,8 @@ plugins {
}
dependencies {
implementation 'io.arrow-kt:arrow-optics:1.2.0-RC'
ksp 'io.arrow-kt:arrow-optics-ksp-plugin:1.2.0-RC'
implementation 'io.arrow-kt:arrow-optics:1.2.0'
ksp 'io.arrow-kt:arrow-optics-ksp-plugin:1.2.0'
}
```

Expand Down

0 comments on commit b27f53e

Please sign in to comment.