Skip to content

Commit

Permalink
Release 0.10.2 (#1737)
Browse files Browse the repository at this point in the history
* Upgrades current version

* Reverts changes in README file
  • Loading branch information
franciscodr authored Oct 24, 2019
1 parent 49e8e9a commit 81eab8c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Expand Down
12 changes: 6 additions & 6 deletions modules/docs/arrow-docs/docs/_data/doc-versions.yml
Original file line number Diff line number Diff line change
@@ -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/

Expand Down
14 changes: 7 additions & 7 deletions modules/docs/arrow-docs/docs/docs/quickstart/setup/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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"
Expand All @@ -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"
Expand All @@ -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"
Expand All @@ -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"
Expand All @@ -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
Expand Down Expand Up @@ -143,7 +143,7 @@ Add to your pom.xml file the following properties:
```
<properties>
<kotlin.version>1.3.0</kotlin.version>
<arrow.version>0.10.1</arrow.version>
<arrow.version>0.10.2</arrow.version>
</properties>
```

Expand Down

0 comments on commit 81eab8c

Please sign in to comment.