Skip to content

Commit d0dd79c

Browse files
committed
Version 0.13.0
1 parent 99ceace commit d0dd79c

File tree

6 files changed

+22
-11
lines changed

6 files changed

+22
-11
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 (2017-08-04)
414

515
- [kotlinx.coroutines 0.24.0](https://github.com/Kotlin/kotlinx.coroutines/releases/tag/0.24.0)

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Download the [JAR](https://bintray.com/gildor/maven/kotlin-coroutines-retrofit#f
1717
Gradle:
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

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

3636
Gradle:
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

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

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ import org.jetbrains.kotlin.gradle.plugin.KotlinPlatformJvmPlugin
1212
import org.jetbrains.kotlin.gradle.plugin.KotlinPluginWrapper
1313

1414
plugins {
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

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

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

8787
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

settings.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
rootProject.name = "kotlin-coroutines-retrofit"
1+
rootProject.name = "kotlin-coroutines-retrofit"
2+
3+
enableFeaturePreview("STABLE_PUBLISHING")

0 commit comments

Comments
 (0)