File tree Expand file tree Collapse file tree 6 files changed +22
-11
lines changed Expand file tree Collapse file tree 6 files changed +22
-11
lines changed Original file line number Diff line number Diff line change 11# CHANGELOG
22
3+ ## Version 0.13.0-eap13 (2017-10-10)
4+
5+ - kotlinx.coroutines 0.30.2-eap13
6+ - Compiled against Kotlin 1.3.0-rc-146
7+
8+ ## Version 0.13.0 (2017-10-10)
9+
10+ - [ kotlinx.coroutines 0.30.2] ( https://github.com/Kotlin/kotlinx.coroutines/releases/tag/0.30.2 )
11+ - Compiled against Kotlin 1.2.71
12+
313## Version 0.12.0 (2017-08-04)
414
515- [ kotlinx.coroutines 0.24.0] ( https://github.com/Kotlin/kotlinx.coroutines/releases/tag/0.24.0 )
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ Download the [JAR](https://bintray.com/gildor/maven/kotlin-coroutines-retrofit#f
1717Gradle:
1818
1919``` groovy
20- compile 'ru.gildor.coroutines:kotlin-coroutines-retrofit:0.12 .0'
20+ compile 'ru.gildor.coroutines:kotlin-coroutines-retrofit:0.13 .0'
2121```
2222
2323Maven: getOrThrow
@@ -26,17 +26,17 @@ Maven:getOrThrow
2626<dependency >
2727 <groupId >ru.gildor.coroutines</groupId >
2828 <artifactId >kotlin-coroutines-retrofit</artifactId >
29- <version >0.12 .0</version >
29+ <version >0.13 .0</version >
3030</dependency >
3131```
3232
33- ### If you use Kotlin 1.3 (including EAP) : Version based on stable coroutines API
33+ ### If you use Kotlin 1.3: Version based on stable coroutines API
3434
3535
3636Gradle:
3737
3838``` groovy
39- compile 'ru.gildor.coroutines:kotlin-coroutines-retrofit:0.12 .0-eap13'
39+ compile 'ru.gildor.coroutines:kotlin-coroutines-retrofit:0.13 .0-eap13'
4040```
4141
4242Maven: getOrThrow
@@ -45,7 +45,7 @@ Maven:getOrThrow
4545<dependency >
4646 <groupId >ru.gildor.coroutines</groupId >
4747 <artifactId >kotlin-coroutines-retrofit</artifactId >
48- <version >0.12 .0-eap13</version >
48+ <version >0.13 .0-eap13</version >
4949</dependency >
5050```
5151
Original file line number Diff line number Diff line change @@ -12,15 +12,15 @@ import org.jetbrains.kotlin.gradle.plugin.KotlinPlatformJvmPlugin
1212import org.jetbrains.kotlin.gradle.plugin.KotlinPluginWrapper
1313
1414plugins {
15- id(" org.jetbrains.kotlin.jvm" ) version " 1.2.60 "
15+ id(" org.jetbrains.kotlin.jvm" ) version " 1.2.71 "
1616 id(" com.jfrog.bintray" ) version " 1.8.4"
1717 jacoco
1818 `maven- publish`
1919 id(" org.jetbrains.dokka" ) version " 0.9.16"
2020}
2121
2222group = " ru.gildor.coroutines"
23- version = " 0.12 .0"
23+ version = " 0.13 .0"
2424description = " Provides Kotlin Coroutines suspendable await() extensions for Retrofit Call"
2525
2626repositories {
@@ -81,7 +81,7 @@ val releaseTag = "v${project.version}"
8181val sourcesJar by tasks.creating(Jar ::class ) {
8282 dependsOn(" classes" )
8383 classifier = " sources"
84- from(java. sourceSets[" main" ].allSource)
84+ from(sourceSets[" main" ].allSource)
8585}
8686
8787val javadocJar by tasks.creating(Jar ::class ) {
Original file line number Diff line number Diff line change 1- # suppress inspection "UnusedProperty" for whole file
21distributionBase =GRADLE_USER_HOME
32distributionPath =wrapper/dists
4- distributionUrl =https\://services.gradle.org/distributions/gradle-4.9 -bin.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-4.10 -bin.zip
54zipStoreBase =GRADLE_USER_HOME
65zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change 1- rootProject.name = " kotlin-coroutines-retrofit"
1+ rootProject.name = " kotlin-coroutines-retrofit"
2+
3+ enableFeaturePreview(" STABLE_PUBLISHING" )
You can’t perform that action at this time.
0 commit comments