File tree 4 files changed +12
-6
lines changed
4 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 3
3
/local.properties
4
4
build /
5
5
.DS_Store
6
- /out
6
+ /out
7
+ * .iml
Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
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
+
3
8
## Version 0.8.2 (2017-10-04)
4
9
5
10
- Fixed Kotlin stdlib dependency version in pom.xml
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Download the [JAR](https://bintray.com/gildor/maven/kotlin-coroutines-retrofit#f
14
14
Gradle:
15
15
16
16
``` groovy
17
- compile 'ru.gildor.coroutines:kotlin-coroutines-retrofit:0.8.2 '
17
+ compile 'ru.gildor.coroutines:kotlin-coroutines-retrofit:0.9.0 '
18
18
```
19
19
20
20
Maven:
23
23
<dependency >
24
24
<groupId >ru.gildor.coroutines</groupId >
25
25
<artifactId >kotlin-coroutines-retrofit</artifactId >
26
- <version >0.8.2 </version >
26
+ <version >0.9.0 </version >
27
27
</dependency >
28
28
```
29
29
Original file line number Diff line number Diff line change 1
1
plugins {
2
- id " org.jetbrains.kotlin.jvm" version " 1.1.51 "
2
+ id " org.jetbrains.kotlin.jvm" version " 1.2.10 "
3
3
id " com.jfrog.bintray" version " 1.7.3" apply false
4
4
id " jacoco"
5
5
}
6
6
7
7
group ' ru.gildor.coroutines'
8
- version ' 0.8.2 '
8
+ version ' 0.9.0 '
9
9
10
10
repositories {
11
11
jcenter()
@@ -16,7 +16,7 @@ sourceCompatibility = '1.6'
16
16
17
17
dependencies {
18
18
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 "
20
20
compile ' com.squareup.retrofit2:retrofit:2.3.0'
21
21
testCompile ' junit:junit:4.12'
22
22
}
You can’t perform that action at this time.
0 commit comments