Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -23,7 +23,7 @@ Maven:
<dependency>
<groupId>ru.gildor.coroutines</groupId>
<artifactId>kotlin-coroutines-retrofit</artifactId>
<version>0.8.1</version>
<version>0.8.2</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group 'ru.gildor.coroutines'
version '0.8.1'
version '0.8.2'

repositories {
jcenter()
Expand All @@ -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'
Expand Down