Skip to content

Commit

Permalink
Fixed Kotlin stdlib dependency version in pom.xml (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
gildor committed Oct 4, 2017
1 parent a249e9d commit 20063f3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
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

0 comments on commit 20063f3

Please sign in to comment.