From ddae0617060eb06aaf8b4c982f744f387626693c Mon Sep 17 00:00:00 2001 From: Tapac Date: Sat, 29 Feb 2020 15:29:53 +0300 Subject: [PATCH] Dependency versions updated to 0.21.1 --- Getting-Started.md | 12 ++++++------ LibDocumentation.md | 24 ++++++++++++------------ 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/Getting-Started.md b/Getting-Started.md index ab31114..f504487 100644 --- a/Getting-Started.md +++ b/Getting-Started.md @@ -15,17 +15,17 @@ org.jetbrains.exposed exposed-core - 0.20.1 + 0.21.1 org.jetbrains.exposed exposed-dao - 0.20.1 + 0.21.1 org.jetbrains.exposed exposed-jdbc - 0.20.1 + 0.21.1 @@ -38,9 +38,9 @@ repositories { jcenter() } dependencies { - compile("org.jetbrains.exposed", "exposed-core", "0.20.1") - compile("org.jetbrains.exposed", "exposed-dao", "0.20.1") - compile("org.jetbrains.exposed", "exposed-jdbc", "0.20.1") + compile("org.jetbrains.exposed", "exposed-core", "0.21.1") + compile("org.jetbrains.exposed", "exposed-dao", "0.21.1") + compile("org.jetbrains.exposed", "exposed-jdbc", "0.21.1") } ``` diff --git a/LibDocumentation.md b/LibDocumentation.md index 89b5045..855f16d 100644 --- a/LibDocumentation.md +++ b/LibDocumentation.md @@ -69,22 +69,22 @@ Dependencies mapping listed bellow is similar (by functionality) to the previous org.jetbrains.exposed exposed-core - 0.18.1 + 0.21.1 org.jetbrains.exposed exposed-dao - 0.18.1 + 0.21.1 org.jetbrains.exposed exposed-jdbc - 0.18.1 + 0.21.1 org.jetbrains.exposed exposed-jodatime - 0.18.1 + 0.21.1 @@ -93,19 +93,19 @@ Dependencies mapping listed bellow is similar (by functionality) to the previous #### Gradle Groovy ```groovy dependencies { - compile 'org.jetbrains.exposed:exposed-core:0.18.1' - compile 'org.jetbrains.exposed:exposed-dao:0.18.1' - compile 'org.jetbrains.exposed:exposed-jdbc:0.18.1' - compile 'org.jetbrains.exposed:exposed-jodatime:0.18.1' + compile 'org.jetbrains.exposed:exposed-core:0.21.1' + compile 'org.jetbrains.exposed:exposed-dao:0.21.1' + compile 'org.jetbrains.exposed:exposed-jdbc:0.21.1' + compile 'org.jetbrains.exposed:exposed-jodatime:0.21.1' } ``` #### Gradle Kotlin DSL ```kotlin dependencies { - compile("org.jetbrains.exposed", "exposed-core", "0.18.1") - compile("org.jetbrains.exposed", "exposed-dao", "0.18.1") - compile("org.jetbrains.exposed", "exposed-jdbc", "0.18.1") - compile("org.jetbrains.exposed", "exposed-jodatime", "0.18.1") + compile("org.jetbrains.exposed", "exposed-core", "0.21.1") + compile("org.jetbrains.exposed", "exposed-dao", "0.21.1") + compile("org.jetbrains.exposed", "exposed-jdbc", "0.21.1") + compile("org.jetbrains.exposed", "exposed-jodatime", "0.21.1") } ```