diff --git a/README.md b/README.md index 4d96b72..a86010d 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ executed concurrently also. ## Gradle ```groovy -compile group: 'com.github.akurilov', name: 'java-coroutines', version: '1.0.14' +compile group: 'com.github.akurilov', name: 'java-coroutines', version: '1.1.0' ``` ## Implementing Basic Coroutine diff --git a/build.gradle b/build.gradle index 5aa6bc9..490f71e 100644 --- a/build.gradle +++ b/build.gradle @@ -11,7 +11,7 @@ allprojects { apply plugin: "maven" apply plugin: "signing" group = "com.github.akurilov" - version = "1.0.14" + version = "1.1.0" } tasks.withType(JavaCompile) { @@ -24,7 +24,7 @@ repositories { } dependencies { - compile("com.github.akurilov:java-commons:[1.1.0,)") + compile("com.github.akurilov:java-commons:[1.2.0,)") testCompile("junit:junit:4.12") }