From ad225b4e25983a35a7a05c73739e85c6589eb196 Mon Sep 17 00:00:00 2001 From: Aiden Fuller Date: Thu, 17 Apr 2025 11:25:07 +1000 Subject: [PATCH] Upgraded to 2025.1 --- build.gradle | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/build.gradle b/build.gradle index be2c3ee..c24bf57 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ plugins { } group = 'org.cobalyte' -version = '1.2.0' +version = '1.2.1' repositories { mavenCentral() @@ -12,8 +12,8 @@ repositories { // Configure Gradle IntelliJ Plugin intellij { - version = '2024.3.5' - type = 'IC' // Target IDE Platform - IC for IntelliJ IDEA Community Edition + version = '2025.1' + type = 'RD' // Target IDE Platform - IC for IntelliJ IDEA Community Edition } dependencies { @@ -24,6 +24,7 @@ dependencies { // Configure plugin metadata patchPluginXml { sinceBuild = '231' + untilBuild = '' pluginDescription = ''' A plugin for JetBrains IDEs that automatically prefixes commit messages with information extracted from branch names. @@ -43,11 +44,20 @@ patchPluginXml { ''' changeNotes = ''' - Version 1.2.0: - - Extended compatibility to support 2024.3.x IDEs including Rider 2024.3.6 - - Version 1.1.0: - - Initial release of the Commit Message Prefixer plugin +

Version 1.2.1

+ + +

Version 1.2.0

+ + +

Version 1.1.0

+ ''' }