Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into kotlin-1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
gildor committed Oct 9, 2018
2 parents 0f6c50b + d0dd79c commit fa118ed
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 6 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# CHANGELOG

## Version 0.13.0-eap13 (2017-10-10)

- kotlinx.coroutines 0.30.2-eap13
- Compiled against Kotlin 1.3.0-rc-146

## Version 0.13.0 (2017-10-10)

- [kotlinx.coroutines 0.30.2](https://github.com/Kotlin/kotlinx.coroutines/releases/tag/0.30.2)
- Compiled against Kotlin 1.2.71

## Version 0.12.0-eap13 (2017-08-04) - Stable coroutines

First version of kotlin-coroutines-retrofit based on stable coroutines API from Kotlin 1.3
Expand Down
26 changes: 24 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,34 @@ Based on [kotlinx.coroutines](https://github.com/Kotlin/kotlinx.coroutines) impl
This branch uses stable version of Kotlin coroutines and work only on Kotlin 1.3 (including EAP builds)

## Download

Download the [JAR](https://bintray.com/gildor/maven/kotlin-coroutines-retrofit#files/ru/gildor/coroutines/kotlin-coroutines-retrofit):

### If you use Kotlin 1.2: Version of the library based on experimental coroutines API

Gradle:

```groovy
compile 'ru.gildor.coroutines:kotlin-coroutines-retrofit:0.13.0'
```

Maven:getOrThrow

```xml
<dependency>
<groupId>ru.gildor.coroutines</groupId>
<artifactId>kotlin-coroutines-retrofit</artifactId>
<version>0.13.0</version>
</dependency>
```

### If you use Kotlin 1.3: Version based on stable coroutines API


Gradle:

```groovy
compile 'ru.gildor.coroutines:kotlin-coroutines-retrofit:0.12.0-eap13'
compile 'ru.gildor.coroutines:kotlin-coroutines-retrofit:0.13.0-eap13'
```

Maven:getOrThrow
Expand All @@ -25,7 +47,7 @@ Maven:getOrThrow
<dependency>
<groupId>ru.gildor.coroutines</groupId>
<artifactId>kotlin-coroutines-retrofit</artifactId>
<version>0.12.0-eap13</version>
<version>0.13.0-eap13</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ plugins {
}

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

repositories {
Expand Down Expand Up @@ -78,7 +78,7 @@ val releaseTag = "v${project.version}"
val sourcesJar by tasks.creating(Jar::class) {
dependsOn("classes")
classifier = "sources"
from(java.sourceSets["main"].allSource)
from(sourceSets["main"].allSource)
}

val javadocJar by tasks.creating(Jar::class) {
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
3 changes: 1 addition & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# suppress inspection "UnusedProperty" for whole file
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.9-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit fa118ed

Please sign in to comment.