0.17.6 -> 0.17.7

This commit is contained in:
Tapac
2019-11-17 18:47:41 +03:00
committed by Andrey.Tarashevskiy
parent 0aa9ec4844
commit 92cf1929d3

View File

@@ -32,7 +32,7 @@ To add `Exposed` framework of that version you had to use:
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed</artifactId>
<version>0.17.6</version>
<version>0.17.7</version>
</dependency>
</dependencies>
@@ -41,13 +41,13 @@ To add `Exposed` framework of that version you had to use:
#### Gradle Groovy
```groovy
dependencies {
compile 'org.jetbrains.exposed:exposed:0.17.6'
compile 'org.jetbrains.exposed:exposed:0.17.7'
}
```
#### Gradle Kotlin DSL
```kotlin
dependencies {
compile("org.jetbrains.exposed", "exposed", "0.17.6")
compile("org.jetbrains.exposed", "exposed", "0.17.7")
}
```