Skip to content

Commit

Permalink
Release for Ktor 3.0.0-rc-1 (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
Stexxe authored Sep 10, 2024
1 parent a99461c commit cf19918
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ To install the plugin, add it to the `plugins` block of your `build.gradle.kts`:

```kotlin
plugins {
id("io.ktor.plugin") version "3.0.0-beta-2"
id("io.ktor.plugin") version "3.0.0-rc-1"
}
```

or `build.gradle` file:

```groovy
plugins {
id "io.ktor.plugin" version "3.0.0-beta-2"
id "io.ktor.plugin" version "3.0.0-rc-1"
}
```

Expand Down
2 changes: 1 addition & 1 deletion plugin/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
kotlin = "1.9.24"
ktor-plugin = "3.0.0-beta-2"
ktor-plugin = "3.0.0-rc-1"
logback = "1.2.11"
gradle-plugin-publish = "1.2.1"
shadow-gradle-plugin = "7.1.2"
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/main/kotlin/io/ktor/plugin/KtorGradlePlugin.kt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import org.gradle.api.Plugin
import org.gradle.api.Project
import org.gradle.api.plugins.ApplicationPlugin

const val KTOR_VERSION = "3.0.0-beta-2"
const val KTOR_VERSION = "3.0.0-rc-1"

@Suppress("unused") // Gradle Plugin is not used directly
abstract class KtorGradlePlugin : Plugin<Project> {
Expand Down

0 comments on commit cf19918

Please sign in to comment.