@@ -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 {
4848Add 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 "
5252dependencies {
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`
8888apply plugin: 'kotlin-kapt' //optional
8989apply 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 "
9292dependencies {
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