Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.7.2 #864

Merged
merged 2 commits into from
May 29, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 16 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,21 +39,22 @@ Add the dependencies into the project's `build.gradle`

```groovy
dependencies {
compile 'io.arrow-kt:arrow-core:0.7.1'
compile 'io.arrow-kt:arrow-syntax:0.7.1'
compile 'io.arrow-kt:arrow-typeclasses:0.7.1'
compile 'io.arrow-kt:arrow-data:0.7.1'
compile 'io.arrow-kt:arrow-instances-core:0.7.1'
compile 'io.arrow-kt:arrow-instances-data:0.7.1'
kapt 'io.arrow-kt:arrow-annotations-processor:0.7.1'
compile 'io.arrow-kt:arrow-core:0.7.2'
compile 'io.arrow-kt:arrow-syntax:0.7.2'
compile 'io.arrow-kt:arrow-typeclasses:0.7.2'
compile 'io.arrow-kt:arrow-data:0.7.2'
compile 'io.arrow-kt:arrow-instances-core:0.7.2'
compile 'io.arrow-kt:arrow-instances-data:0.7.2'
kapt 'io.arrow-kt:arrow-annotations-processor:0.7.2'

compile 'io.arrow-kt:arrow-free:0.7.1' //optional
compile 'io.arrow-kt:arrow-mtl:0.7.1' //optional
compile 'io.arrow-kt:arrow-effects:0.7.1' //optional
compile 'io.arrow-kt:arrow-effects-rx2:0.7.1' //optional
compile 'io.arrow-kt:arrow-effects-kotlinx-coroutines:0.7.1' //optional
compile 'io.arrow-kt:arrow-optics:0.7.1' //optional
compile 'io.arrow-kt:arrow-generic:0.7.1' //optional
compile 'io.arrow-kt:arrow-free:0.7.2' //optional
compile 'io.arrow-kt:arrow-mtl:0.7.2' //optional
compile 'io.arrow-kt:arrow-effects:0.7.2' //optional
compile 'io.arrow-kt:arrow-effects-rx2:0.7.2' //optional
compile 'io.arrow-kt:arrow-effects-kotlinx-coroutines:0.7.2' //optional
compile 'io.arrow-kt:arrow-optics:0.7.2' //optional
compile 'io.arrow-kt:arrow-generic:0.7.2' //optional
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you please add recursion schemes here?

compile 'io.arrow-kt:arrow-recursion:0.7.2' //optional
}
```

Expand All @@ -70,7 +71,7 @@ apply from: rootProject.file('gradle/generated-kotlin-sources.gradle') //optiona

dependencies {
...
kapt 'io.arrow-kt:arrow-annotations-processor:0.7.1' //optional
kapt 'io.arrow-kt:arrow-annotations-processor:0.7.2' //optional
...
}
```
Expand Down
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.7.2-SNAPSHOT
VERSION_NAME=0.7.2
# Gradle options
org.gradle.jvmargs=-Xmx4g
# Kotlin configuration
Expand Down
33 changes: 17 additions & 16 deletions modules/docs/arrow-docs/docs/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,21 +44,22 @@ Add the dependencies into the project's `build.gradle`

```groovy
dependencies {
compile 'io.arrow-kt:arrow-core:0.7.1'
compile 'io.arrow-kt:arrow-syntax:0.7.1'
compile 'io.arrow-kt:arrow-typeclasses:0.7.1'
compile 'io.arrow-kt:arrow-data:0.7.1'
compile 'io.arrow-kt:arrow-instances-core:0.7.1'
compile 'io.arrow-kt:arrow-instances-data:0.7.1'
kapt 'io.arrow-kt:arrow-annotations-processor:0.7.1'

compile 'io.arrow-kt:arrow-free:0.7.1' //optional
compile 'io.arrow-kt:arrow-mtl:0.7.1' //optional
compile 'io.arrow-kt:arrow-effects:0.7.1' //optional
compile 'io.arrow-kt:arrow-effects-rx2:0.7.1' //optional
compile 'io.arrow-kt:arrow-effects-kotlinx-coroutines:0.7.1' //optional
compile 'io.arrow-kt:arrow-optics:0.7.1' //optional
compile 'io.arrow-kt:arrow-generic:0.7.1' //optional
compile 'io.arrow-kt:arrow-core:0.7.2'
compile 'io.arrow-kt:arrow-syntax:0.7.2'
compile 'io.arrow-kt:arrow-typeclasses:0.7.2'
compile 'io.arrow-kt:arrow-data:0.7.2'
compile 'io.arrow-kt:arrow-instances-core:0.7.2'
compile 'io.arrow-kt:arrow-instances-data:0.7.2'
kapt 'io.arrow-kt:arrow-annotations-processor:0.7.2'

compile 'io.arrow-kt:arrow-free:0.7.2' //optional
compile 'io.arrow-kt:arrow-mtl:0.7.2' //optional
compile 'io.arrow-kt:arrow-effects:0.7.2' //optional
compile 'io.arrow-kt:arrow-effects-rx2:0.7.2' //optional
compile 'io.arrow-kt:arrow-effects-kotlinx-coroutines:0.7.2' //optional
compile 'io.arrow-kt:arrow-optics:0.7.2' //optional
compile 'io.arrow-kt:arrow-generic:0.7.2' //optional
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you please add recursion schemes here?

compile 'io.arrow-kt:arrow-recursion:0.7.2' //optional
}
```

Expand All @@ -75,7 +76,7 @@ apply from: rootProject.file('gradle/generated-kotlin-sources.gradle') //optiona

dependencies {
...
kapt 'io.arrow-kt:arrow-annotations-processor:0.7.1' //optional
kapt 'io.arrow-kt:arrow-annotations-processor:0.7.2' //optional
...
}
```
Expand Down