Skip to content

Commit 94a210f

Browse files
authored
RELEASE 0.8.1 (arrow-kt#1105)
1 parent 6192fb2 commit 94a210f

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.arrow-kt/arrow-core/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.arrow-kt/arrow-core)
44
[![Build Status](https://travis-ci.org/arrow-kt/arrow.svg?branch=master)](https://travis-ci.org/arrow-kt/arrow/)
5-
[![Kotlin version badge](https://img.shields.io/badge/kotlin-1.2.51-blue.svg)](http://kotlinlang.org/)
5+
[![Kotlin version badge](https://img.shields.io/badge/kotlin-1.3-blue.svg)
66
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0)
77
[![codecov](https://codecov.io/gh/arrow-kt/arrow/branch/master/graph/badge.svg)](https://codecov.io/gh/arrow-kt/arrow)
88

@@ -44,7 +44,7 @@ allprojects {
4444
Add the dependencies into the project's `build.gradle`
4545

4646
```groovy
47-
def arrow_version = "0.8.0"
47+
def arrow_version = "0.8.1"
4848
dependencies {
4949
compile "io.arrow-kt:arrow-core:$arrow_version"
5050
compile "io.arrow-kt:arrow-syntax:$arrow_version"
@@ -84,7 +84,7 @@ Add the dependencies into the project's `build.gradle`
8484
apply plugin: 'kotlin-kapt' //optional
8585
apply from: rootProject.file('gradle/generated-kotlin-sources.gradle') //only for Android projects
8686
87-
def arrow_version = "0.8.0"
87+
def arrow_version = "0.8.1"
8888
dependencies {
8989
...
9090
kapt 'io.arrow-kt:arrow-annotations-processor:$arrow_version' //optional

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Package definitions
22
GROUP=io.arrow-kt
3-
VERSION_NAME=0.8.1-SNAPSHOT
3+
VERSION_NAME=0.8.1
44
# Gradle options
55
org.gradle.jvmargs=-Xmx4g
66
# Kotlin configuration

modules/docs/arrow-docs/docs/docs/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ NOTE: The docs are currently at around 60% completion. They're the present prior
88

99
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.arrow-kt/arrow-core/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.arrow-kt/arrow-core)
1010
[![Build Status](https://travis-ci.org/arrow-kt/arrow.svg?branch=master)](https://travis-ci.org/arrow-kt/arrow/)
11-
[![Kotlin version badge](https://img.shields.io/badge/kotlin-1.2.0-blue.svg)](http://kotlinlang.org/)
11+
[![Kotlin version badge](https://img.shields.io/badge/kotlin-1.3-blue.svg)](http://kotlinlang.org/)
1212
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0)
1313

1414
Λrrow is a library for Typed Functional Programming in Kotlin.
@@ -48,7 +48,7 @@ allprojects {
4848
Add the dependencies into the project's `build.gradle`
4949

5050
```groovy
51-
def arrow_version = "0.8.0"
51+
def arrow_version = "0.8.1"
5252
dependencies {
5353
compile "io.arrow-kt:arrow-core:$arrow_version"
5454
compile "io.arrow-kt:arrow-syntax:$arrow_version"
@@ -88,7 +88,7 @@ Add the dependencies into the project's `build.gradle`
8888
apply plugin: 'kotlin-kapt' //optional
8989
apply from: rootProject.file('gradle/generated-kotlin-sources.gradle') //only for Android projects
9090
91-
def arrow_version = "0.8.0"
91+
def arrow_version = "0.8.1"
9292
dependencies {
9393
...
9494
kapt 'io.arrow-kt:arrow-annotations-processor:$arrow_version' //optional
@@ -129,7 +129,7 @@ Add to your pom.xml file the following properties:
129129
```
130130
<properties>
131131
<kotlin.version>1.3.0</kotlin.version>
132-
<arrow.version>0.8.0</arrow.version>
132+
<arrow.version>0.8.1</arrow.version>
133133
</properties>
134134
```
135135

0 commit comments

Comments
 (0)