diff --git a/.idea/.name b/.idea/.name
index f5c65ef..5312f7b 100644
--- a/.idea/.name
+++ b/.idea/.name
@@ -1 +1 @@
-hello-world-plugin
\ No newline at end of file
+commit-message-prefixer
\ No newline at end of file
diff --git a/.idea/csv-editor.xml b/.idea/csv-editor.xml
deleted file mode 100644
index 27079a8..0000000
--- a/.idea/csv-editor.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/git_toolbox_prj.xml b/.idea/git_toolbox_prj.xml
new file mode 100644
index 0000000..02b915b
--- /dev/null
+++ b/.idea/git_toolbox_prj.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/gradle.xml b/.idea/gradle.xml
index 14746e7..2a65317 100644
--- a/.idea/gradle.xml
+++ b/.idea/gradle.xml
@@ -1,5 +1,6 @@
+
diff --git a/build.gradle b/build.gradle
index 23aeca2..be2c3ee 100644
--- a/build.gradle
+++ b/build.gradle
@@ -4,7 +4,7 @@ plugins {
}
group = 'org.cobalyte'
-version = '1.1.0'
+version = '1.2.0'
repositories {
mavenCentral()
@@ -12,7 +12,7 @@ repositories {
// Configure Gradle IntelliJ Plugin
intellij {
- version = '2023.1.5'
+ version = '2024.3.5'
type = 'IC' // Target IDE Platform - IC for IntelliJ IDEA Community Edition
}
@@ -24,7 +24,6 @@ dependencies {
// Configure plugin metadata
patchPluginXml {
sinceBuild = '231'
- untilBuild = '241.*'
pluginDescription = '''
A plugin for JetBrains IDEs that automatically prefixes commit messages with information extracted from branch names.
@@ -43,7 +42,13 @@ patchPluginXml {
Result: "#12345 - Initial implementation"
'''
- changeNotes = 'Initial release of the Commit Message Prefixer plugin'
+ 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
+ '''
}
test {