Upgraded to 2025.1

This commit is contained in:
Aiden Fuller 2025-04-17 11:25:07 +10:00
parent 747b1bee17
commit ad225b4e25

View file

@ -4,7 +4,7 @@ plugins {
} }
group = 'org.cobalyte' group = 'org.cobalyte'
version = '1.2.0' version = '1.2.1'
repositories { repositories {
mavenCentral() mavenCentral()
@ -12,8 +12,8 @@ repositories {
// Configure Gradle IntelliJ Plugin // Configure Gradle IntelliJ Plugin
intellij { intellij {
version = '2024.3.5' version = '2025.1'
type = 'IC' // Target IDE Platform - IC for IntelliJ IDEA Community Edition type = 'RD' // Target IDE Platform - IC for IntelliJ IDEA Community Edition
} }
dependencies { dependencies {
@ -24,6 +24,7 @@ dependencies {
// Configure plugin metadata // Configure plugin metadata
patchPluginXml { patchPluginXml {
sinceBuild = '231' sinceBuild = '231'
untilBuild = ''
pluginDescription = ''' pluginDescription = '''
A plugin for JetBrains IDEs that automatically prefixes commit messages with information extracted from branch names. A plugin for JetBrains IDEs that automatically prefixes commit messages with information extracted from branch names.
@ -43,11 +44,20 @@ patchPluginXml {
</ul> </ul>
''' '''
changeNotes = ''' changeNotes = '''
Version 1.2.0: <h3>Version 1.2.1</h3>
- Extended compatibility to support 2024.3.x IDEs including Rider 2024.3.6 <ul>
<li>Added support for 2025.1</li>
</ul>
Version 1.1.0: <h3>Version 1.2.0</h3>
- Initial release of the Commit Message Prefixer plugin <ul>
<li>Extended compatibility to support 2024.3.x IDEs including Rider 2024.3.6</li>
</ul>
<h3>Version 1.1.0</h3>
<ul>
<li>Initial release of the Commit Message Prefixer plugin</li>
</ul>
''' '''
} }