From 56177d84b2fdb2f5469ae02c7f046803e2dc76b0 Mon Sep 17 00:00:00 2001 From: nizienko Date: Sat, 23 Nov 2024 19:52:55 +0100 Subject: [PATCH] Update project version and IntelliJ dependencies Bump project version to 1.1.1 to reflect new changes. Update IntelliJ IDEA Community version to 2024.3 and extend the supported build range. These changes ensure compatibility with the latest development tools and environment. --- build.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 644145c..b38cfd6 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -5,7 +5,7 @@ plugins { } group = "com.github.nizienko" -version = "1.1.0" +version = "1.1.1" repositories { mavenCentral() @@ -16,7 +16,7 @@ repositories { dependencies { intellijPlatform { - intellijIdeaCommunity("2024.2") + intellijIdeaCommunity("2024.3") instrumentationTools() pluginVerifier() } @@ -31,7 +31,7 @@ intellijPlatform { pluginConfiguration { ideaVersion { sinceBuild.set("241.1") - untilBuild.set("243.*") + untilBuild.set("251.*") } } }