Skip to content

Commit

Permalink
Version 0.9.0 (#35)
Browse files Browse the repository at this point in the history
- kotlinx.coroutines 0.20
- Compiled against Kotlin 1.2.10
  • Loading branch information
gildor committed Dec 26, 2017
1 parent 20063f3 commit 046ddc5
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
/local.properties
build/
.DS_Store
/out
/out
*.iml
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# CHANGELOG

## Version 0.9.0 (2017-12-26)

- [kotlinx.coroutines 0.20](https://github.com/Kotlin/kotlinx.coroutines/releases/tag/0.20)
- Compiled against Kotlin 1.2.10

## Version 0.8.2 (2017-10-04)

- Fixed Kotlin stdlib dependency version in pom.xml
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.2'
compile 'ru.gildor.coroutines:kotlin-coroutines-retrofit:0.9.0'
```

Maven:
Expand All @@ -23,7 +23,7 @@ Maven:
<dependency>
<groupId>ru.gildor.coroutines</groupId>
<artifactId>kotlin-coroutines-retrofit</artifactId>
<version>0.8.2</version>
<version>0.9.0</version>
</dependency>
```

Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
plugins {
id "org.jetbrains.kotlin.jvm" version "1.1.51"
id "org.jetbrains.kotlin.jvm" version "1.2.10"
id "com.jfrog.bintray" version "1.7.3" apply false
id "jacoco"
}

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

repositories {
jcenter()
Expand All @@ -16,7 +16,7 @@ sourceCompatibility = '1.6'

dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:${plugins.findPlugin("kotlin").properties["kotlinPluginVersion"]}"
compile "org.jetbrains.kotlinx:kotlinx-coroutines-core:0.19"
compile "org.jetbrains.kotlinx:kotlinx-coroutines-core:0.20"
compile 'com.squareup.retrofit2:retrofit:2.3.0'
testCompile 'junit:junit:4.12'
}
Expand Down

0 comments on commit 046ddc5

Please sign in to comment.