diff --git a/CHANGELOG.md b/CHANGELOG.md index 23d67c45..8f5de034 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.2 - 2019-10-? +# 0.1.2 - 2019-11-03 ## Added * Ktor DSL -- Ktor Engine and parser for it. Support dynamic and static routes, warming of lambda, granular permissions. Does not support Scheduled. diff --git a/build.gradle.kts b/build.gradle.kts index ab465eb1..4e535a89 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -2,7 +2,7 @@ import org.jetbrains.kotlin.gradle.dsl.KotlinJvmCompile import tanvd.kosogor.defaults.configureIdea group = "io.kotless" -version = "0.1.2-SNAPSHOT" +version = "0.1.2" plugins { id("tanvd.kosogor") version "1.0.7" apply true diff --git a/dsl/common/lang-common/build.gradle.kts b/dsl/common/lang-common/build.gradle.kts index f15c1e68..22ca2ee4 100644 --- a/dsl/common/lang-common/build.gradle.kts +++ b/dsl/common/lang-common/build.gradle.kts @@ -25,7 +25,7 @@ publishJar { username = "tanvd" repository = "io.kotless" info { - description = "Kotless DSL" + description = "Kotless Lang Common" githubRepo = "https://github.com/JetBrains/kotless" vcsUrl = "https://github.com/JetBrains/kotless" labels.addAll(listOf("kotlin", "serverless", "web", "devops", "faas", "lambda")) diff --git a/dsl/common/lang-parser-common/build.gradle.kts b/dsl/common/lang-parser-common/build.gradle.kts index 08a5a39f..b11ee813 100644 --- a/dsl/common/lang-parser-common/build.gradle.kts +++ b/dsl/common/lang-parser-common/build.gradle.kts @@ -20,7 +20,7 @@ publishJar { username = "tanvd" repository = "io.kotless" info { - description = "Kotless Parser Utils" + description = "Kotless Parser Common" githubRepo = "https://github.com/JetBrains/kotless" vcsUrl = "https://github.com/JetBrains/kotless" labels.addAll(listOf("kotlin", "serverless", "web", "devops", "faas", "lambda")) diff --git a/dsl/ktor/ktor-lang-local/build.gradle.kts b/dsl/ktor/ktor-lang-local/build.gradle.kts index 88490853..a704c1f8 100644 --- a/dsl/ktor/ktor-lang-local/build.gradle.kts +++ b/dsl/ktor/ktor-lang-local/build.gradle.kts @@ -15,7 +15,7 @@ publishJar { username = "tanvd" repository = "io.kotless" info { - description = "Kotless Local Runner" + description = "Ktor DSL Local Runner" githubRepo = "https://github.com/JetBrains/kotless" vcsUrl = "https://github.com/JetBrains/kotless" labels.addAll(listOf("kotlin", "serverless", "web", "devops", "faas", "lambda")) diff --git a/dsl/ktor/ktor-lang-parser/build.gradle.kts b/dsl/ktor/ktor-lang-parser/build.gradle.kts index 02100889..4fe5deb5 100644 --- a/dsl/ktor/ktor-lang-parser/build.gradle.kts +++ b/dsl/ktor/ktor-lang-parser/build.gradle.kts @@ -14,7 +14,7 @@ publishJar { username = "tanvd" repository = "io.kotless" info { - description = "Kotless DSL Parser" + description = "Ktor DSL Parser" githubRepo = "https://github.com/JetBrains/kotless" vcsUrl = "https://github.com/JetBrains/kotless" labels.addAll(listOf("kotlin", "serverless", "web", "devops", "faas", "lambda")) diff --git a/dsl/ktor/ktor-lang/build.gradle.kts b/dsl/ktor/ktor-lang/build.gradle.kts index ea89434b..999b9cd3 100644 --- a/dsl/ktor/ktor-lang/build.gradle.kts +++ b/dsl/ktor/ktor-lang/build.gradle.kts @@ -16,7 +16,7 @@ publishJar { username = "tanvd" repository = "io.kotless" info { - description = "Kotless DSL" + description = "Ktor DSL" githubRepo = "https://github.com/JetBrains/kotless" vcsUrl = "https://github.com/JetBrains/kotless" labels.addAll(listOf("kotlin", "serverless", "web", "devops", "faas", "lambda")) diff --git a/examples/kotless-shortener/build.gradle.kts b/examples/kotless-shortener/build.gradle.kts index 60c14a3b..c0d77218 100644 --- a/examples/kotless-shortener/build.gradle.kts +++ b/examples/kotless-shortener/build.gradle.kts @@ -11,7 +11,7 @@ plugins { kotlin("jvm") version "1.3.50" apply true - id("io.kotless") version "0.1.2-SNAPSHOT" apply true + id("io.kotless") version "0.1.2" apply true } repositories { @@ -21,7 +21,7 @@ repositories { } dependencies { - implementation("io.kotless", "lang", "0.1.2-SNAPSHOT") + implementation("io.kotless", "lang", "0.1.2") implementation("commons-validator", "commons-validator", "1.6") implementation("com.amazonaws", "aws-java-sdk-dynamodb", "1.11.650") diff --git a/examples/kotless-site/build.gradle.kts b/examples/kotless-site/build.gradle.kts index 38d16e07..8226f265 100644 --- a/examples/kotless-site/build.gradle.kts +++ b/examples/kotless-site/build.gradle.kts @@ -1,17 +1,16 @@ import io.kotless.DSLType -import io.kotless.plugin.gradle.dsl.Webapp import io.kotless.plugin.gradle.dsl.Webapp.Route53 import io.kotless.plugin.gradle.dsl.kotless group = "io.kotless" -version = "0.1.2-SNAPSHOT" +version = "0.1.2" plugins { id("tanvd.kosogor") version "1.0.7" apply true kotlin("jvm") version "1.3.50" apply true - id("io.kotless") version "0.1.2-SNAPSHOT" apply true + id("io.kotless") version "0.1.2" apply true } repositories { @@ -21,7 +20,7 @@ repositories { } dependencies { - implementation("io.kotless", "lang", "0.1.2-SNAPSHOT") + implementation("io.kotless", "lang", "0.1.2") implementation("org.jetbrains.kotlinx", "kotlinx-html-jvm", "0.6.11") } diff --git a/examples/ktor-shortener/build.gradle.kts b/examples/ktor-shortener/build.gradle.kts index e92616ac..2724b417 100644 --- a/examples/ktor-shortener/build.gradle.kts +++ b/examples/ktor-shortener/build.gradle.kts @@ -4,14 +4,14 @@ import io.kotless.plugin.gradle.dsl.kotless import org.jetbrains.kotlin.gradle.dsl.KotlinJvmCompile group = "io.kotless" -version = "0.1.2-SNAPSHOT" +version = "0.1.2" plugins { id("tanvd.kosogor") version "1.0.7" apply true kotlin("jvm") version "1.3.50" apply true - id("io.kotless") version "0.1.2-SNAPSHOT" apply true + id("io.kotless") version "0.1.2" apply true } repositories { @@ -24,7 +24,7 @@ dependencies { implementation("commons-validator", "commons-validator", "1.6") implementation("com.amazonaws", "aws-java-sdk-dynamodb", "1.11.650") - implementation("io.kotless", "ktor-lang", "0.1.2-SNAPSHOT") + implementation("io.kotless", "ktor-lang", "0.1.2") implementation("io.ktor", "ktor-html-builder", "1.2.5") } diff --git a/examples/ktor-site/build.gradle.kts b/examples/ktor-site/build.gradle.kts index a605b5f2..43692c8b 100644 --- a/examples/ktor-site/build.gradle.kts +++ b/examples/ktor-site/build.gradle.kts @@ -4,14 +4,14 @@ import io.kotless.plugin.gradle.dsl.kotless import org.jetbrains.kotlin.gradle.dsl.KotlinJvmCompile group = "io.kotless" -version = "0.1.2-SNAPSHOT" +version = "0.1.2" plugins { id("tanvd.kosogor") version "1.0.7" apply true kotlin("jvm") version "1.3.50" apply true - id("io.kotless") version "0.1.2-SNAPSHOT" apply true + id("io.kotless") version "0.1.2" apply true } repositories { @@ -21,7 +21,7 @@ repositories { } dependencies { - implementation("io.kotless", "ktor-lang", "0.1.2-SNAPSHOT") + implementation("io.kotless", "ktor-lang", "0.1.2") implementation("io.ktor", "ktor-html-builder", "1.2.5") }