Skip to content

Commit

Permalink
Merge pull request #46 from ktorio/rsinukov/1.4.3
Browse files Browse the repository at this point in the history
Upgrade ktor to 1.4.3
  • Loading branch information
rsinukov authored Dec 1, 2020
2 parents 2982075 + e1ff2ee commit a35f166
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=1.4.2
version=1.4.3
kotlin_version=1.3.70
kotlin.code.style=official
kotlinx_coroutines_version=1.3.4
4 changes: 2 additions & 2 deletions ktor-generator-website/resources/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
<link rel="stylesheet" type="text/css" href="lib/bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" href="styles.css"/>

<title>Ktor Project Generator (1.4.1)</title>
<title>Ktor Project Generator (1.4.3)</title>
</head>
<body>

<header class="navbar navbar-dark bg-dark fixed-top">
<a class="navbar-brand" href="#"><img src="ktor_logo_box.svg"
style="width:1.6em;height:1.6em;padding-right:0.5em;"/>Ktor Project Generator (1.4.1)</a>
style="width:1.6em;height:1.6em;padding-right:0.5em;"/>Ktor Project Generator (1.4.3)</a>
</header>

<div class="container-fluid" style="margin-top:84px;">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,11 @@ object Versions {
val V140 = KtorVersion(version = "1.4.0", kotlinVersion = "1.4.0")
val V141 = KtorVersion(version = "1.4.1", kotlinVersion = "1.4.10")
val V142 = KtorVersion(version = "1.4.2", kotlinVersion = "1.4.10")
val V143 = KtorVersion(version = "1.4.3", kotlinVersion = "1.4.20")

val ALL = arrayOf(V101, V115, V126, V130, V132, V140, V141, V142)
val LAST = V142
val LAST_EAP = V142
val ALL = arrayOf(V101, V115, V126, V130, V132, V140, V141, V142, V143)
val LAST = V143
val LAST_EAP = V143

private val VMAP = ALL.associate { it.version to it }
fun fromString(version: String): KtorVersion? = VMAP[version]
Expand Down
8 changes: 7 additions & 1 deletion ktor-intellij-plugin/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<id>io.ktor.intellij.plugin</id>

<name>Ktor</name>
<version>1.4.1</version>
<version>1.4.3</version>
<vendor url="https://www.jetbrains.com">JetBrains</vendor>
<description>
<![CDATA[
Expand All @@ -18,6 +18,12 @@
<h2>Changelog</h2>
<h3>1.4.3</h3>
<ul>
<li>Ktor 1.4.3</li>
</ul>
<h3>1.4.2</h3>
<ul>
Expand Down

0 comments on commit a35f166

Please sign in to comment.