Skip to content

Commit

Permalink
Release 0.12.1 (#2383)
Browse files Browse the repository at this point in the history
  • Loading branch information
rachelcarmena authored Apr 27, 2021
1 parent f772b24 commit d291342
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Add the dependencies into the project's `build.gradle`:
```groovy
apply plugin: 'kotlin-kapt'
def arrow_version = "0.12.0"
def arrow_version = "0.12.1"
dependencies {
implementation "io.arrow-kt:arrow-core:$arrow_version"
implementation "io.arrow-kt:arrow-syntax:$arrow_version"
Expand All @@ -83,7 +83,7 @@ dependencies {
```groovy
apply plugin: 'kotlin-kapt'
def arrow_version = "0.12.0"
def arrow_version = "0.12.1"
dependencies {
implementation "io.arrow-kt:arrow-optics:$arrow_version"
implementation "io.arrow-kt:arrow-syntax:$arrow_version"
Expand All @@ -96,7 +96,7 @@ dependencies {
```groovy
apply plugin: 'kotlin-kapt'
def arrow_version = "0.12.0"
def arrow_version = "0.12.1"
dependencies {
implementation "io.arrow-kt:arrow-fx:$arrow_version"
implementation "io.arrow-kt:arrow-syntax:$arrow_version"
Expand All @@ -109,7 +109,7 @@ dependencies {
```groovy
apply plugin: 'kotlin-kapt'
def arrow_version = "0.12.0"
def arrow_version = "0.12.1"
dependencies {
implementation "io.arrow-kt:arrow-fx:$arrow_version"
implementation "io.arrow-kt:arrow-optics:$arrow_version"
Expand All @@ -129,7 +129,7 @@ Add the dependencies into the project's `build.gradle`
apply plugin: 'kotlin-kapt' //optional
apply from: rootProject.file('gradle/generated-kotlin-sources.gradle') //only for Android projects
def arrow_version = "0.12.0"
def arrow_version = "0.12.1"
dependencies {
...
kapt "io.arrow-kt:arrow-meta:$arrow_version" //optional
Expand Down Expand Up @@ -184,7 +184,7 @@ Add to your `pom.xml` file the following properties:
```xml
<properties>
<kotlin.version>1.4.0</kotlin.version>
<arrow.version>0.12.0</arrow.version>
<arrow.version>0.12.1</arrow.version>
</properties>
```

Expand Down Expand Up @@ -275,7 +275,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.12.0` with `0.13.0-SNAPSHOT` and add this repository:
If you want to try the latest features, replace `0.12.1` with `0.13.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=0.13.0-SNAPSHOT
LATEST_VERSION=0.12.0
LATEST_VERSION=0.12.1
# Versions
ANDROID_LIFECYCLE_VERSION=2.2.0
ANDROID_TOOLS_BUILD_PLUGIN_VERSION=4.0.0
Expand Down
2 changes: 1 addition & 1 deletion arrow-site/docs/_data/doc-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ 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/
previous: https://arrow-kt.io/docs/0.11/

Expand Down

0 comments on commit d291342

Please sign in to comment.