Merge pull request #76 from DisPony/fix-readme

Change dependencies version to latest
This commit is contained in:
Alexander Nozik 2019-12-08 10:22:42 +03:00 committed by GitHub
commit 5c14b7dafa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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")
}
```