From 3e16f1e7fab6bc5f933e0275fe4541e312a88551 Mon Sep 17 00:00:00 2001 From: Vladislav Tankov Date: Sat, 8 Feb 2020 23:18:38 +0300 Subject: [PATCH] [Release] 0.1.3 - local run, errors-free Gradle import and more --- CHANGELOG.md | 2 +- README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ab7d043..5ab06f3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Changelog The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) -# 0.1.3 - ??? +# 0.1.3 - 2020-08-02 ## Added * Output to console URL of deployed application * Support local start for Kotless DSL diff --git a/README.md b/README.md index 31f3268c..dcf99cd5 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ plugins { //Version of Kotlin should 1.3.50+ kotlin("jvm") version "1.3.50" apply true - id("io.kotless") version "0.1.2" apply true + id("io.kotless") version "0.1.3" apply true } ``` @@ -53,9 +53,9 @@ repositories { } dependencies { - implementation("io.kotless", "lang", "0.1.2") + implementation("io.kotless", "lang", "0.1.3") //or for Ktor - //implementation("io.kotless", "ktor-lang", "0.1.2") + //implementation("io.kotless", "ktor-lang", "0.1.3") } ```