From 1277b3eb67630d9f0283907fb1c60d9c844f5ad4 Mon Sep 17 00:00:00 2001
From: Oliver Geisel <oliver.geisel@tu-dresden.de>
Date: Wed, 28 May 2025 17:01:49 +0200
Subject: [PATCH] Add support for IntelliJ 2025.1, set source and target source
 to Java 21

---
 CHANGELOG.md      | 10 ++++++++++
 build.gradle.kts  |  6 +++---
 gradle.properties |  6 +++---
 3 files changed, 16 insertions(+), 6 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index f5f2538..83f5566 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,6 +12,16 @@
 
 ### Fixed
 
+## [0.3.6]
+
+### Added
+
+- Support for IntelliJ IDEA 2025.1
+
+### Changed
+
+- Update source and target Java version to 21
+
 ## [0.3.5]
 
 ### Added
diff --git a/build.gradle.kts b/build.gradle.kts
index 93cd05e..3b3757e 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -182,11 +182,11 @@ tasks {
     }
 
     withType<JavaCompile> {
-        sourceCompatibility = "17"
-        targetCompatibility = "17"
+        sourceCompatibility = "21"
+        targetCompatibility = "21"
     }
 
     withType<Detekt> {
-        jvmTarget = "17"
+        jvmTarget = "21"
     }
 }
diff --git a/gradle.properties b/gradle.properties
index 8447f1a..a8b0c40 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -4,16 +4,16 @@
 pluginGroup = org.jastadd
 pluginId = JastAdd
 pluginName = JastAdd Language Support
-pluginVersion = 0.3.5
+pluginVersion = 0.3.6
 pluginRepositoryUrl = https://git-st.inf.tu-dresden.de/jastadd/jetbrains-plugin/
 
 # See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
 # for insight into build numbers and IntelliJ Platform versions.
 pluginSinceBuild = 223
-pluginUntilBuild = 243.*
+pluginUntilBuild = 251.*
 
 platformType = IC
-platformVersion = 2024.3
+platformVersion = 2025.1
 
 # Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
 # Example: platformPlugins = com.jetbrains.php:203.4449.22, org.intellij.scala:2023.3.27@EAP
-- 
GitLab