From f633c0dba80e1cc1d13fcf17b7cc691ee1241cc1 Mon Sep 17 00:00:00 2001 From: Andrey Kurilov Date: Tue, 14 Nov 2017 19:28:59 +0300 Subject: [PATCH] v1.1.0 --- README.md | 2 +- build.gradle | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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") }