Skip to content

Commit 046ddc5

Browse files
authored
Version 0.9.0 (#35)
- kotlinx.coroutines 0.20 - Compiled against Kotlin 1.2.10
1 parent 20063f3 commit 046ddc5

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
/local.properties
44
build/
55
.DS_Store
6-
/out
6+
/out
7+
*.iml

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CHANGELOG
22

3+
## Version 0.9.0 (2017-12-26)
4+
5+
- [kotlinx.coroutines 0.20](https://github.com/Kotlin/kotlinx.coroutines/releases/tag/0.20)
6+
- Compiled against Kotlin 1.2.10
7+
38
## Version 0.8.2 (2017-10-04)
49

510
- Fixed Kotlin stdlib dependency version in pom.xml

README.md

+2-2
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.8.2'
17+
compile 'ru.gildor.coroutines:kotlin-coroutines-retrofit:0.9.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.8.2</version>
26+
<version>0.9.0</version>
2727
</dependency>
2828
```
2929

build.gradle

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

77
group 'ru.gildor.coroutines'
8-
version '0.8.2'
8+
version '0.9.0'
99

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

1717
dependencies {
1818
compile "org.jetbrains.kotlin:kotlin-stdlib:${plugins.findPlugin("kotlin").properties["kotlinPluginVersion"]}"
19-
compile "org.jetbrains.kotlinx:kotlinx-coroutines-core:0.19"
19+
compile "org.jetbrains.kotlinx:kotlinx-coroutines-core:0.20"
2020
compile 'com.squareup.retrofit2:retrofit:2.3.0'
2121
testCompile 'junit:junit:4.12'
2222
}

0 commit comments

Comments
 (0)