Skip to content

Commit

Permalink
Update docs from version 1.0.1 to 1.1.2 (#2808)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dobiasd committed Aug 29, 2022
1 parent 706a48f commit 6aa1875
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions arrow-site/docs/docs/core/README.md
Expand Up @@ -126,7 +126,7 @@ Add the dependencies into the project's `build.gradle.kts`:

```
dependencies {
implementation("io.arrow-kt:arrow-core:1.0.1")
implementation("io.arrow-kt:arrow-core:1.1.2")
}
```

Expand All @@ -136,7 +136,7 @@ To avoid specifying the Arrow version for every dependency, a BOM file is availa

```
dependencies {
implementation(platform("io.arrow-kt:arrow-stack:1.0.1"))
implementation(platform("io.arrow-kt:arrow-stack:1.1.2"))
implementation("io.arrow-kt:arrow-core")
...
Expand All @@ -145,7 +145,7 @@ dependencies {

#### Next development version

If you want to try the latest features, replace `1.0.1` with on of the latest `alpha`, `beta` or `rc` publications.
If you want to try the latest features, replace `1.1.2` with on of the latest `alpha`, `beta` or `rc` publications.

</div>

Expand All @@ -168,7 +168,7 @@ Add the dependencies into the project's `build.gradle`:
##### Arrow Core

```groovy
def arrow_version = "1.0.1"
def arrow_version = "1.1.2"
dependencies {
implementation "io.arrow-kt:arrow-core:$arrow_version"
}
Expand All @@ -179,7 +179,7 @@ dependencies {
To avoid specifying the Arrow version for every dependency, a BOM file is available:

```groovy
def arrow_version = "1.0.1"
def arrow_version = "1.1.2"
dependencies {
implementation platform("io.arrow-kt:arrow-stack:$arrow_version")
Expand All @@ -190,7 +190,7 @@ dependencies {

#### Next development version

If you want to try the latest features, replace `1.0.1` with one of the latest `alpha`, `beta` or `rc` publications.
If you want to try the latest features, replace `1.1.2` with one of the latest `alpha`, `beta` or `rc` publications.

</div>

Expand All @@ -205,7 +205,7 @@ following properties:

<properties>
<kotlin.version>1.6.10</kotlin.version>
<arrow.version>1.0.1</arrow.version>
<arrow.version>1.1.2</arrow.version>
</properties>
```

Expand Down Expand Up @@ -243,7 +243,7 @@ To avoid specifying the Arrow version for every dependency, a BOM file is availa

#### Next development version

If you want to try the latest features, replace `1.0.1` with one of the latest `alpha`, `beta` or `rc` publications.
If you want to try the latest features, replace `1.1.2` with one of the latest `alpha`, `beta` or `rc` publications.

</div>
</div>
Expand Down

0 comments on commit 6aa1875

Please sign in to comment.