diff --git a/.gitignore b/.gitignore index 86e640c..1bf64dd 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /local.properties build/ .DS_Store +/out \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 84e784a..5901065 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # CHANGELOG +## Version 0.8.0 (2017-10-02) + +- [kotlinx.coroutines 0.19](https://github.com/Kotlin/kotlinx.coroutines/releases/tag/0.19) +- Compiled against Kotlin 1.1.51 + ## Version 0.7.1 (2017-07-28) The previous version was accidentally released with kotlinx.coroutines 0.16 instead 0.17 diff --git a/README.md b/README.md index aea8c7a..3345138 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Download the [JAR](https://bintray.com/gildor/maven/kotlin-coroutines-retrofit#f Gradle: ```groovy -compile 'ru.gildor.coroutines:kotlin-coroutines-retrofit:0.7.1' +compile 'ru.gildor.coroutines:kotlin-coroutines-retrofit:0.8.0' ``` Maven: @@ -23,7 +23,7 @@ Maven: ru.gildor.coroutines kotlin-coroutines-retrofit - 0.7.1 + 0.8.0 ``` diff --git a/build.gradle b/build.gradle index 5fd9be9..75b95cb 100644 --- a/build.gradle +++ b/build.gradle @@ -1,11 +1,11 @@ plugins { - id "org.jetbrains.kotlin.jvm" version "1.1.3-2" + id "org.jetbrains.kotlin.jvm" version "1.1.51" id "com.jfrog.bintray" version "1.7.3" apply false id "jacoco" } group 'ru.gildor.coroutines' -version '0.7.1' +version '0.8.0' repositories { jcenter() @@ -16,7 +16,7 @@ sourceCompatibility = '1.6' dependencies { compile "org.jetbrains.kotlin:kotlin-stdlib" - compile "org.jetbrains.kotlinx:kotlinx-coroutines-core:0.17" + compile "org.jetbrains.kotlinx:kotlinx-coroutines-core:0.19" compile 'com.squareup.retrofit2:retrofit:2.3.0' testCompile 'junit:junit:4.12' } diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 9f37315..736fb7d 100644 Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index c2016cd..26b61d7 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,5 @@ -#Mon Jul 24 23:02:30 SGT 2017 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-4.0.1-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-4.2-all.zip