From b325b4f32832dbd62cb9046ff32c35fc355ecf4b Mon Sep 17 00:00:00 2001 From: Nikita Klimenko Date: Fri, 6 Dec 2019 00:28:48 +0300 Subject: [PATCH] Change dependencies version to latest Current mentioned version '0.1.0' is not available at https://dl.bintray.com/mipt-npm/scientifik --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a1050f6ff..0aeab2ee8 100644 --- a/README.md +++ b/README.md @@ -88,13 +88,13 @@ repositories { Then use a regular dependency like so: ```groovy -api "scientifik:kmath-core-jvm:0.1.0-dev" +api "scientifik:kmath-core-jvm:0.1.3-dev" ``` or in the Gradle Kotlin DSL: ```kotlin -api("scientifik:kmath-core-jvm:0.1.0-dev") +api("scientifik:kmath-core-jvm:0.1.3-dev") ``` ### Release @@ -107,7 +107,7 @@ repositories{ } dependencies{ - api("scientifik:kmath-core-jvm:0.1.0") + api("scientifik:kmath-core-jvm:0.1.3") } ```