diff --git a/CHANGELOG.md b/CHANGELOG.md index 20a6931..c92c82e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,12 @@ ### Security +## 2023.1.0 - 2023-12-06 + +### Changed +- Update kotlin to v1.9.21 +- Update compatibility for IDEA 2021.3 - 2023.3 + ## 2022.1.2 - 2022-12-06 ### Changed diff --git a/build.gradle.kts b/build.gradle.kts index bd40e06..1e5d4cd 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -6,9 +6,9 @@ plugins { // Java support id("java") // Kotlin support - id("org.jetbrains.kotlin.jvm") version "1.7.22" + id("org.jetbrains.kotlin.jvm") version "1.9.21" // Gradle IntelliJ Plugin - id("org.jetbrains.intellij") version "1.10.0" + id("org.jetbrains.intellij") version "1.15.0" // Gradle Changelog Plugin id("org.jetbrains.changelog") version "2.0.0" // Gradle Qodana Plugin diff --git a/gradle.properties b/gradle.properties index 51c9e11..7126733 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,11 +3,11 @@ pluginGroup = com.github.developerutils.kotlin-function-arguments-helper pluginName = Kotlin Function Arguments Helper # SemVer format -> https://semver.org -pluginVersion = 2022.1.2 +pluginVersion = 2023.1.0 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild = 213 -pluginUntilBuild = 231.* +pluginUntilBuild = 233.* # IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#intellij-extension platformType = IC