Skip to content

Commit 4b6708a

Browse files
authored
Merge pull request #61 from DeveloperUtils/update-versions
Compatibility for IDEA till 2023.1
2 parents 208f879 + fa3c010 commit 4b6708a

File tree

4 files changed

+10
-17
lines changed

4 files changed

+10
-17
lines changed

CHANGELOG.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,10 @@
33
# Kotlin Function Arguments Helper Changelog
44

55
## [Unreleased]
6-
### Added
7-
86
### Changed
97

10-
### Deprecated
11-
12-
### Removed
13-
14-
### Fixed
15-
16-
### Security
8+
- Update kotlin to v1.7.22
9+
- Update compatibility for IDEA 2021.3 - 2023.1
1710

1811
## [2022.1.1]
1912
### Changed

build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ plugins {
66
// Java support
77
id("java")
88
// Kotlin support
9-
id("org.jetbrains.kotlin.jvm") version "1.7.10"
9+
id("org.jetbrains.kotlin.jvm") version "1.7.22"
1010
// Gradle IntelliJ Plugin
11-
id("org.jetbrains.intellij") version "1.8.0"
11+
id("org.jetbrains.intellij") version "1.10.0"
1212
// Gradle Changelog Plugin
13-
id("org.jetbrains.changelog") version "1.3.1"
13+
id("org.jetbrains.changelog") version "2.0.0"
1414
// Gradle Qodana Plugin
1515
id("org.jetbrains.qodana") version "0.1.13"
1616
// detekt linter - read more: https://detekt.github.io/detekt/gradle.html
17-
id("io.gitlab.arturbosch.detekt") version "1.18.1"
17+
id("io.gitlab.arturbosch.detekt") version "1.22.0"
1818
}
1919

2020
group = properties("pluginGroup")

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
pluginGroup = com.github.developerutils.kotlin-function-arguments-helper
44
pluginName = Kotlin Function Arguments Helper
55
# SemVer format -> https://semver.org
6-
pluginVersion = 2022.1.1
6+
pluginVersion = 2022.1.2
77

88
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
99
pluginSinceBuild = 213
10-
pluginUntilBuild = 222.*
10+
pluginUntilBuild = 231.*
1111

1212
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#intellij-extension
1313
platformType = IC
@@ -18,7 +18,7 @@ platformVersion = 2021.3.3
1818
platformPlugins = com.intellij.java, org.jetbrains.kotlin
1919

2020
# Gradle Releases -> https://github.com/gradle/gradle/releases
21-
gradleVersion = 7.5
21+
gradleVersion = 7.6
2222

2323
# Opt-out flag for bundling Kotlin standard library -> https://plugins.jetbrains.com/docs/intellij/kotlin.html#kotlin-standard-library
2424
# suppress inspection "UnusedProperty"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)