diff --git a/CHANGELOG.md b/CHANGELOG.md index 197c1ea..134fa85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,10 @@ ## Unreleased +### Added + +- Add support for IDEA 2023.3 + ### Fixed - Apply spell-checker and improved the wording of the online documentation provided by the plugin. (Closes: #134) @@ -43,7 +47,7 @@ ### Fixed - Avoid assertion error on creating a new (blank) `debian/control` and the first field typed is *not* `Source:`. (Closes: #107) - Avoid assertion error in DEP-5 copyright files when directory is specified rather than a file in `Files:`. (Closes: #109) -- Avoid a deprecation warning with IDEA 2023.1 related to FoldingDescriptor.EMPTY +- Avoid a deprecation warning with IDEA 2023.1 related to `FoldingDescriptor.EMPTY` ### Changed - Avoid parse errors on empty fields as some deb822 files allow them. It will trigger a warning or an error diff --git a/gradle.properties b/gradle.properties index 960d9ca..e2ed917 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,7 +5,7 @@ pluginGroup = com.github.nthykier.debpkg pluginName = debpkg pluginVersion = 0.0.21 pluginSinceBuild = 212 -pluginUntilBuild = 232.* +pluginUntilBuild = 233.* platformType = IC # Reminder: Must be aligned with `pluginSinceBuild` to ensure backwards @@ -14,6 +14,6 @@ platformVersion = 2021.2 platformDownloadSources = true # Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl -pluginVerifierIdeVersions = 2021.2, 2022.3, 2023.2 +pluginVerifierIdeVersions = 2021.2, 2022.3, 2023.3 gradleVersion=8.2.1 javaVersion=11