diff --git a/CHANGELOG.md b/CHANGELOG.md index afe5e30..ccb5b27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG +## Version 0.7.0 (2017-07-24) + +- [kotlinx.coroutines 0.17](https://github.com/Kotlin/kotlinx.coroutines/releases/tag/0.17) +- Compiled against Kotlin 1.1.3-2 + + ## Version 0.6.0 (2017-07-04) Notice: This release backward incompatible with previous versions: diff --git a/README.md b/README.md index 072b8c5..b89f0c9 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Download the [JAR](https://bintray.com/gildor/maven/kotlin-coroutines-retrofit#f Gradle: ```groovy -compile 'ru.gildor.coroutines:kotlin-coroutines-retrofit:0.6.0' +compile 'ru.gildor.coroutines:kotlin-coroutines-retrofit:0.7.0' ``` Maven: @@ -19,7 +19,7 @@ Maven: ru.gildor.coroutines kotlin-coroutines-retrofit - 0.6.0 + 0.7.0 ``` diff --git a/build.gradle b/build.gradle index 6d2ada1..6c2feac 100644 --- a/build.gradle +++ b/build.gradle @@ -1,10 +1,10 @@ plugins { - id "org.jetbrains.kotlin.jvm" version "1.1.3" + id "org.jetbrains.kotlin.jvm" version "1.1.3-2" id "com.jfrog.bintray" version "1.7.3" apply false } group 'ru.gildor.coroutines' -version '0.6.0' +version '0.7.0' repositories { jcenter() diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 8de6234..9f37315 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 1f49503..c2016cd 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ -#Sat Feb 25 08:31:16 SGT 2017 +#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-3.4-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-4.0.1-all.zip diff --git a/gradlew b/gradlew index 4453cce..cccdd3d 100755 --- a/gradlew +++ b/gradlew @@ -33,11 +33,11 @@ DEFAULT_JVM_OPTS="" # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD="maximum" -warn ( ) { +warn () { echo "$*" } -die ( ) { +die () { echo echo "$*" echo @@ -155,7 +155,7 @@ if $cygwin ; then fi # Escape application args -save ( ) { +save () { for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done echo " " }