File tree Expand file tree Collapse file tree 5 files changed +37
-6
lines changed Expand file tree Collapse file tree 5 files changed +37
-6
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-eap13 (2017-08-04) - Stable coroutines
414
515First version of kotlin-coroutines-retrofit based on stable coroutines API from Kotlin 1.3
Original file line number Diff line number Diff line change @@ -11,12 +11,34 @@ Based on [kotlinx.coroutines](https://github.com/Kotlin/kotlinx.coroutines) impl
1111This branch uses stable version of Kotlin coroutines and work only on Kotlin 1.3 (including EAP builds)
1212
1313## Download
14+
1415Download the [ JAR] ( https://bintray.com/gildor/maven/kotlin-coroutines-retrofit#files/ru/gildor/coroutines/kotlin-coroutines-retrofit ) :
1516
17+ ### If you use Kotlin 1.2: Version of the library based on experimental coroutines API
18+
19+ Gradle:
20+
21+ ``` groovy
22+ compile 'ru.gildor.coroutines:kotlin-coroutines-retrofit:0.13.0'
23+ ```
24+
25+ Maven: getOrThrow
26+
27+ ``` xml
28+ <dependency >
29+ <groupId >ru.gildor.coroutines</groupId >
30+ <artifactId >kotlin-coroutines-retrofit</artifactId >
31+ <version >0.13.0</version >
32+ </dependency >
33+ ```
34+
35+ ### If you use Kotlin 1.3: Version based on stable coroutines API
36+
37+
1638Gradle:
1739
1840``` groovy
19- compile 'ru.gildor.coroutines:kotlin-coroutines-retrofit:0.12 .0-eap13'
41+ compile 'ru.gildor.coroutines:kotlin-coroutines-retrofit:0.13 .0-eap13'
2042```
2143
2244Maven: getOrThrow
@@ -25,7 +47,7 @@ Maven:getOrThrow
2547<dependency >
2648 <groupId >ru.gildor.coroutines</groupId >
2749 <artifactId >kotlin-coroutines-retrofit</artifactId >
28- <version >0.12 .0-eap13</version >
50+ <version >0.13 .0-eap13</version >
2951</dependency >
3052```
3153
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ plugins {
2020}
2121
2222group = " ru.gildor.coroutines"
23- version = " 0.12 .0-eap13"
23+ version = " 0.13 .0-eap13"
2424description = " Provides Kotlin Coroutines suspendable await() extensions for Retrofit Call"
2525
2626repositories {
@@ -78,7 +78,7 @@ val releaseTag = "v${project.version}"
7878val sourcesJar by tasks.creating(Jar ::class ) {
7979 dependsOn(" classes" )
8080 classifier = " sources"
81- from(java. sourceSets[" main" ].allSource)
81+ from(sourceSets[" main" ].allSource)
8282}
8383
8484val 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
You can’t perform that action at this time.
0 commit comments