Skip to content

Commit 7fa1079

Browse files
authored
Version 0.8.0 (#29)
- kotlin.coroutines 0.19 - Kotlin 1.1.51 - Gradle 4.2
1 parent bcc1c64 commit 7fa1079

File tree

6 files changed

+12
-7
lines changed

6 files changed

+12
-7
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
/local.properties
44
build/
55
.DS_Store
6+
/out

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CHANGELOG
22

3+
## Version 0.8.0 (2017-10-02)
4+
5+
- [kotlinx.coroutines 0.19](https://github.com/Kotlin/kotlinx.coroutines/releases/tag/0.19)
6+
- Compiled against Kotlin 1.1.51
7+
38
## Version 0.7.1 (2017-07-28)
49

510
The previous version was accidentally released with kotlinx.coroutines 0.16 instead 0.17

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Download the [JAR](https://bintray.com/gildor/maven/kotlin-coroutines-retrofit#f
1414
Gradle:
1515

1616
```groovy
17-
compile 'ru.gildor.coroutines:kotlin-coroutines-retrofit:0.7.1'
17+
compile 'ru.gildor.coroutines:kotlin-coroutines-retrofit:0.8.0'
1818
```
1919

2020
Maven:
@@ -23,7 +23,7 @@ Maven:
2323
<dependency>
2424
<groupId>ru.gildor.coroutines</groupId>
2525
<artifactId>kotlin-coroutines-retrofit</artifactId>
26-
<version>0.7.1</version>
26+
<version>0.8.0</version>
2727
</dependency>
2828
```
2929

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
plugins {
2-
id "org.jetbrains.kotlin.jvm" version "1.1.3-2"
2+
id "org.jetbrains.kotlin.jvm" version "1.1.51"
33
id "com.jfrog.bintray" version "1.7.3" apply false
44
id "jacoco"
55
}
66

77
group 'ru.gildor.coroutines'
8-
version '0.7.1'
8+
version '0.8.0'
99

1010
repositories {
1111
jcenter()
@@ -16,7 +16,7 @@ sourceCompatibility = '1.6'
1616

1717
dependencies {
1818
compile "org.jetbrains.kotlin:kotlin-stdlib"
19-
compile "org.jetbrains.kotlinx:kotlinx-coroutines-core:0.17"
19+
compile "org.jetbrains.kotlinx:kotlinx-coroutines-core:0.19"
2020
compile 'com.squareup.retrofit2:retrofit:2.3.0'
2121
testCompile 'junit:junit:4.12'
2222
}

gradle/wrapper/gradle-wrapper.jar

-4 Bytes
Binary file not shown.
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
#Mon Jul 24 23:02:30 SGT 2017
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
43
zipStoreBase=GRADLE_USER_HOME
54
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.0.1-all.zip
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.2-all.zip

0 commit comments

Comments
 (0)