Skip to content

Commit

Permalink
Release 0.13.2 (#2384)
Browse files Browse the repository at this point in the history
  • Loading branch information
rachelcarmena authored Apr 27, 2021
1 parent bdbf6af commit 2c22e74
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Add the dependencies into the project's `build.gradle`:
##### Λrrow Core

```groovy
def arrow_version = "0.13.1"
def arrow_version = "0.13.2"
dependencies {
implementation "io.arrow-kt:arrow-core:$arrow_version"
}
Expand All @@ -79,7 +79,7 @@ dependencies {
```groovy
apply plugin: 'kotlin-kapt'
def arrow_version = "0.13.1"
def arrow_version = "0.13.2"
dependencies {
implementation "io.arrow-kt:arrow-optics:$arrow_version"
kapt "io.arrow-kt:arrow-meta:$arrow_version"
Expand All @@ -89,7 +89,7 @@ dependencies {
##### Λrrow Core + Λrrow Fx

```groovy
def arrow_version = "0.13.1"
def arrow_version = "0.13.2"
dependencies {
implementation "io.arrow-kt:arrow-fx-coroutines:$arrow_version"
}
Expand All @@ -116,7 +116,7 @@ Add to your `pom.xml` file the following properties:
```xml
<properties>
<kotlin.version>1.4.0</kotlin.version>
<arrow.version>0.13.1</arrow.version>
<arrow.version>0.13.2</arrow.version>
</properties>
```

Expand Down Expand Up @@ -202,7 +202,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 `0.13.1` with `1.0.0-SNAPSHOT` and add this repository:
If you want to try the latest features, replace `0.13.2` with `1.0.0-SNAPSHOT` and add this repository:

```groovy
allprojects {
Expand Down
2 changes: 1 addition & 1 deletion arrow-libs/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Package definitions
GROUP=io.arrow-kt
VERSION_NAME=1.0.0-SNAPSHOT
LATEST_VERSION=0.13.1
LATEST_VERSION=0.13.2
# Versions
ANDROID_LIFECYCLE_VERSION=2.2.0
ANDROID_TOOLS_BUILD_PLUGIN_VERSION=4.0.0
Expand Down
4 changes: 2 additions & 2 deletions arrow-site/docs/_data/doc-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ docVersions:
url: https://arrow-kt.io/docs/0.11/
previous: https://arrow-kt.io/docs/0.10/

- title: "v0.12.0"
- title: "v0.12.1"
url: https://arrow-kt.io/docs/0.12/
previous: https://arrow-kt.io/docs/0.11/

- title: "v0.13.1"
- title: "v0.13.2"
url: https://arrow-kt.io/
previous: https://arrow-kt.io/docs/0.12/

Expand Down
10 changes: 5 additions & 5 deletions arrow-site/docs/docs/quickstart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Add the dependencies into the project's `build.gradle`:
##### Arrow Core

```groovy
def arrow_version = "0.13.1"
def arrow_version = "0.13.2"
dependencies {
implementation "io.arrow-kt:arrow-core:$arrow_version"
}
Expand All @@ -69,7 +69,7 @@ dependencies {
```groovy
apply plugin: 'kotlin-kapt'
def arrow_version = "0.13.1"
def arrow_version = "0.13.2"
dependencies {
implementation "io.arrow-kt:arrow-optics:$arrow_version"
kapt "io.arrow-kt:arrow-meta:$arrow_version"
Expand All @@ -79,7 +79,7 @@ dependencies {
##### Arrow Core + Arrow Fx

```groovy
def arrow_version = "0.13.1"
def arrow_version = "0.13.2"
dependencies {
implementation "io.arrow-kt:arrow-fx-coroutines:$arrow_version"
}
Expand All @@ -106,7 +106,7 @@ Add to your pom.xml file the following properties:
```
<properties>
<kotlin.version>1.4.0</kotlin.version>
<arrow.version>0.13.1</arrow.version>
<arrow.version>0.13.2</arrow.version>
</properties>
```

Expand Down Expand Up @@ -193,7 +193,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 `0.13.1` with `1.0.0-SNAPSHOT` and add this repository:
If you want to try the latest features, replace `0.13.2` with `1.0.0-SNAPSHOT` and add this repository:

```groovy
allprojects {
Expand Down

0 comments on commit 2c22e74

Please sign in to comment.