diff --git a/gradle.properties b/gradle.properties index 00134b26dbf..b59c2cc242d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ # Package definitions GROUP=io.arrow-kt -VERSION_NAME=0.10.2-SNAPSHOT +VERSION_NAME=0.10.2 # Gradle options org.gradle.jvmargs=-Xmx4g org.gradle.parallel=true diff --git a/modules/docs/arrow-docs/docs/_data/doc-versions.yml b/modules/docs/arrow-docs/docs/_data/doc-versions.yml index 4d9329a7c82..877096e61a5 100644 --- a/modules/docs/arrow-docs/docs/_data/doc-versions.yml +++ b/modules/docs/arrow-docs/docs/_data/doc-versions.yml @@ -1,14 +1,14 @@ docVersions: - - title: "v0.10.0" - url: https://0-8-2.arrow-kt.io/ - previous: https://0-8-0.arrow-kt.io/ - - title: "v0.10.1" + url: https://0-10-1.arrow-kt.io/ + previous: https://0-10-0.arrow-kt.io/ + + - title: "v0.10.2" url: https://arrow-kt.io/ - previous: https://0-8-2.arrow-kt.io/ + previous: https://0-10-1.arrow-kt.io/ - - title: "v0.10.2-SNAPSHOT" + - title: "v0.10.3-SNAPSHOT" url: https://next.arrow-kt.io/ previous: https://arrow-kt.io/ diff --git a/modules/docs/arrow-docs/docs/docs/quickstart/setup/README.md b/modules/docs/arrow-docs/docs/docs/quickstart/setup/README.md index c45741be688..ecaf57968bf 100644 --- a/modules/docs/arrow-docs/docs/docs/quickstart/setup/README.md +++ b/modules/docs/arrow-docs/docs/docs/quickstart/setup/README.md @@ -8,7 +8,7 @@ permalink: /docs/quickstart/setup/ ### Next development version -If you want to try the last features, replace `0.10.1` by `0.10.2-SNAPSHOT` in the following guideline. +If you want to try the last features, replace `0.10.2` by `0.10.3-SNAPSHOT` in the following guideline. ### JDK @@ -38,7 +38,7 @@ Add the dependencies into the project's `build.gradle`: ```groovy apply plugin: 'kotlin-kapt' -def arrow_version = "0.10.1" +def arrow_version = "0.10.2" dependencies { compile "io.arrow-kt:arrow-core:$arrow_version" compile "io.arrow-kt:arrow-syntax:$arrow_version" @@ -51,7 +51,7 @@ dependencies { ```groovy apply plugin: 'kotlin-kapt' -def arrow_version = "0.10.1" +def arrow_version = "0.10.2" dependencies { compile "io.arrow-kt:arrow-optics:$arrow_version" compile "io.arrow-kt:arrow-syntax:$arrow_version" @@ -64,7 +64,7 @@ dependencies { ```groovy apply plugin: 'kotlin-kapt' -def arrow_version = "0.10.1" +def arrow_version = "0.10.2" dependencies { compile "io.arrow-kt:arrow-fx:$arrow_version" compile "io.arrow-kt:arrow-syntax:$arrow_version" @@ -77,7 +77,7 @@ dependencies { ```groovy apply plugin: 'kotlin-kapt' -def arrow_version = "0.10.1" +def arrow_version = "0.10.2" dependencies { compile "io.arrow-kt:arrow-fx:$arrow_version" compile "io.arrow-kt:arrow-optics:$arrow_version" @@ -101,7 +101,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.10.1" +def arrow_version = "0.10.2" dependencies { ... kapt 'io.arrow-kt:arrow-meta:$arrow_version' //optional @@ -143,7 +143,7 @@ Add to your pom.xml file the following properties: ``` 1.3.0 - 0.10.1 + 0.10.2 ```