From 20063f30e7b7d25bae923292ad1113b614a679e2 Mon Sep 17 00:00:00 2001 From: Andrey Mischenko Date: Wed, 4 Oct 2017 10:35:18 +0800 Subject: [PATCH] Fixed Kotlin stdlib dependency version in pom.xml (#32) --- CHANGELOG.md | 4 ++++ README.md | 4 ++-- build.gradle | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1cf227a..40a4aba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## Version 0.8.2 (2017-10-04) + +- Fixed Kotlin stdlib dependency version in pom.xml + ## Version 0.8.1 (2017-10-02) - [kotlinx.coroutines 0.19](https://github.com/Kotlin/kotlinx.coroutines/releases/tag/0.19) diff --git a/README.md b/README.md index 351a288..14208fb 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Download the [JAR](https://bintray.com/gildor/maven/kotlin-coroutines-retrofit#f Gradle: ```groovy -compile 'ru.gildor.coroutines:kotlin-coroutines-retrofit:0.8.1' +compile 'ru.gildor.coroutines:kotlin-coroutines-retrofit:0.8.2' ``` Maven: @@ -23,7 +23,7 @@ Maven: ru.gildor.coroutines kotlin-coroutines-retrofit - 0.8.1 + 0.8.2 ``` diff --git a/build.gradle b/build.gradle index 6880986..69d80b6 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ plugins { } group 'ru.gildor.coroutines' -version '0.8.1' +version '0.8.2' repositories { jcenter() @@ -15,7 +15,7 @@ targetCompatibility = '1.6' sourceCompatibility = '1.6' dependencies { - compile "org.jetbrains.kotlin:kotlin-stdlib" + compile "org.jetbrains.kotlin:kotlin-stdlib:${plugins.findPlugin("kotlin").properties["kotlinPluginVersion"]}" compile "org.jetbrains.kotlinx:kotlinx-coroutines-core:0.19" compile 'com.squareup.retrofit2:retrofit:2.3.0' testCompile 'junit:junit:4.12'