Skip to content

Commit

Permalink
Version 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gildor committed Oct 9, 2018
1 parent 99ceace commit d0dd79c
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 11 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 (2017-08-04)

- [kotlinx.coroutines 0.24.0](https://github.com/Kotlin/kotlinx.coroutines/releases/tag/0.24.0)
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Download the [JAR](https://bintray.com/gildor/maven/kotlin-coroutines-retrofit#f
Gradle:

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

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

### If you use Kotlin 1.3 (including EAP): Version based on stable coroutines API
### 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 @@ -45,7 +45,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
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ import org.jetbrains.kotlin.gradle.plugin.KotlinPlatformJvmPlugin
import org.jetbrains.kotlin.gradle.plugin.KotlinPluginWrapper

plugins {
id("org.jetbrains.kotlin.jvm") version "1.2.60"
id("org.jetbrains.kotlin.jvm") version "1.2.71"
id("com.jfrog.bintray") version "1.8.4"
jacoco
`maven-publish`
id("org.jetbrains.dokka") version "0.9.16"
}

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

repositories {
Expand Down Expand Up @@ -81,7 +81,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
4 changes: 3 additions & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
rootProject.name = "kotlin-coroutines-retrofit"
rootProject.name = "kotlin-coroutines-retrofit"

enableFeaturePreview("STABLE_PUBLISHING")

0 comments on commit d0dd79c

Please sign in to comment.