Skip to content

Commit

Permalink
Release version 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
TanVD committed Nov 2, 2019
1 parent 0f6fc93 commit 75d73ef
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 19 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion dsl/common/lang-common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
Expand Down
2 changes: 1 addition & 1 deletion dsl/common/lang-parser-common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
Expand Down
2 changes: 1 addition & 1 deletion dsl/ktor/ktor-lang-local/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
Expand Down
2 changes: 1 addition & 1 deletion dsl/ktor/ktor-lang-parser/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
Expand Down
2 changes: 1 addition & 1 deletion dsl/ktor/ktor-lang/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
Expand Down
4 changes: 2 additions & 2 deletions examples/kotless-shortener/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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")
Expand Down
7 changes: 3 additions & 4 deletions examples/kotless-site/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -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 {
Expand All @@ -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")
}

Expand Down
6 changes: 3 additions & 3 deletions examples/ktor-shortener/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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")
}

Expand Down
6 changes: 3 additions & 3 deletions examples/ktor-site/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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")
}

Expand Down

0 comments on commit 75d73ef

Please sign in to comment.