File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 11# CHANGELOG
22
3+ ## Version 0.8.2 (2017-10-04)
4+
5+ - Fixed Kotlin stdlib dependency version in pom.xml
6+
37## Version 0.8.1 (2017-10-02)
48
59- [ kotlinx.coroutines 0.19] ( https://github.com/Kotlin/kotlinx.coroutines/releases/tag/0.19 )
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
1414Gradle:
1515
1616``` groovy
17- compile 'ru.gildor.coroutines:kotlin-coroutines-retrofit:0.8.1 '
17+ compile 'ru.gildor.coroutines:kotlin-coroutines-retrofit:0.8.2 '
1818```
1919
2020Maven:
2323<dependency >
2424 <groupId >ru.gildor.coroutines</groupId >
2525 <artifactId >kotlin-coroutines-retrofit</artifactId >
26- <version >0.8.1 </version >
26+ <version >0.8.2 </version >
2727</dependency >
2828```
2929
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ plugins {
55}
66
77group ' ru.gildor.coroutines'
8- version ' 0.8.1 '
8+ version ' 0.8.2 '
99
1010repositories {
1111 jcenter()
@@ -15,7 +15,7 @@ targetCompatibility = '1.6'
1515sourceCompatibility = ' 1.6'
1616
1717dependencies {
18- compile " org.jetbrains.kotlin:kotlin-stdlib"
18+ compile " org.jetbrains.kotlin:kotlin-stdlib: ${ plugins.findPlugin("kotlin").properties["kotlinPluginVersion"] } "
1919 compile " org.jetbrains.kotlinx:kotlinx-coroutines-core:0.19"
2020 compile ' com.squareup.retrofit2:retrofit:2.3.0'
2121 testCompile ' junit:junit:4.12'
You can’t perform that action at this time.
0 commit comments