Fixes to versioning
This commit is contained in:
parent
32b0d4299e
commit
c464efa4cd
5 changed files with 26 additions and 21 deletions
2
.idea/.name
generated
2
.idea/.name
generated
|
|
@ -1 +1 @@
|
|||
hello-world-plugin
|
||||
commit-message-prefixer
|
||||
16
.idea/csv-editor.xml
generated
16
.idea/csv-editor.xml
generated
|
|
@ -1,16 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="CsvFileAttributes">
|
||||
<option name="attributeMap">
|
||||
<map>
|
||||
<entry key="/foo">
|
||||
<value>
|
||||
<Attribute>
|
||||
<option name="separator" value="," />
|
||||
</Attribute>
|
||||
</value>
|
||||
</entry>
|
||||
</map>
|
||||
</option>
|
||||
</component>
|
||||
</project>
|
||||
15
.idea/git_toolbox_prj.xml
generated
Normal file
15
.idea/git_toolbox_prj.xml
generated
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="GitToolBoxProjectSettings">
|
||||
<option name="commitMessageIssueKeyValidationOverride">
|
||||
<BoolValueOverride>
|
||||
<option name="enabled" value="true" />
|
||||
</BoolValueOverride>
|
||||
</option>
|
||||
<option name="commitMessageValidationEnabledOverride">
|
||||
<BoolValueOverride>
|
||||
<option name="enabled" value="true" />
|
||||
</BoolValueOverride>
|
||||
</option>
|
||||
</component>
|
||||
</project>
|
||||
1
.idea/gradle.xml
generated
1
.idea/gradle.xml
generated
|
|
@ -1,5 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="GradleMigrationSettings" migrationVersion="1" />
|
||||
<component name="GradleSettings">
|
||||
<option name="linkedExternalProjectsSettings">
|
||||
<GradleProjectSettings>
|
||||
|
|
|
|||
13
build.gradle
13
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 {
|
|||
<li>Result: "#12345 - Initial implementation"</li>
|
||||
</ul>
|
||||
'''
|
||||
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 {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue