Skip to content

Commit fa118ed

Browse files
committed
Merge remote-tracking branch 'origin/master' into kotlin-1.3
2 parents 0f6c50b + d0dd79c commit fa118ed

File tree

5 files changed

+37
-6
lines changed

5 files changed

+37
-6
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
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

515
First version of kotlin-coroutines-retrofit based on stable coroutines API from Kotlin 1.3

README.md

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,34 @@ Based on [kotlinx.coroutines](https://github.com/Kotlin/kotlinx.coroutines) impl
1111
This branch uses stable version of Kotlin coroutines and work only on Kotlin 1.3 (including EAP builds)
1212

1313
## Download
14+
1415
Download 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+
1638
Gradle:
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

2244
Maven: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

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ plugins {
2020
}
2121

2222
group = "ru.gildor.coroutines"
23-
version = "0.12.0-eap13"
23+
version = "0.13.0-eap13"
2424
description = "Provides Kotlin Coroutines suspendable await() extensions for Retrofit Call"
2525

2626
repositories {
@@ -78,7 +78,7 @@ val releaseTag = "v${project.version}"
7878
val 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

8484
val javadocJar by tasks.creating(Jar::class) {

gradle/wrapper/gradle-wrapper.jar

0 Bytes
Binary file not shown.
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
# suppress inspection "UnusedProperty" for whole file
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=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
54
zipStoreBase=GRADLE_USER_HOME
65
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)