Skip to content

Commit

Permalink
Fix idea-version naming issue
Browse files Browse the repository at this point in the history
  • Loading branch information
brian-mcnamara committed Aug 4, 2021
1 parent deda43e commit 903dfe7
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ buildscript {
}
plugins {
id "dev.bmac.intellij.plugin-uploader" version "1.2.0"
id "dev.bmac.intellij.plugin-uploader" version "1.2.1"
}
uploadPlugin {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group 'dev.bmac.intellij.plugins'
version '1.2.0'
version '1.2.1'

sourceCompatibility = 1.8

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public void setName(String name) {
this.name = name;
}

@XmlElement
@XmlElement(name = "idea-version")
@Nullable
public IdeaVersionElement getVersionInfo() {
return versionInfo;
Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/testUpdateXmlFile.expected
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
<change-notes>testChangeNotes</change-notes>
<description>testDescription</description>
<name>MyPlugin</name>
<versionInfo since-build="1.0" until-build="1.1"/>
<idea-version since-build="1.0" until-build="1.1"/>
</plugin>
</plugins>
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<change-notes>someOtherNotes</change-notes>
<description>someOtherDescription</description>
<name>DifferentName</name>
<versionInfo since-build="0.1" until-build="0.2"/>
<idea-version since-build="0.1" until-build="0.2"/>
</plugin>
<plugin id="other.plugin" url="./otherPlugin/oldFile.zip" version="1.2.3">
<name>DifferentName</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<change-notes>testChangeNotes</change-notes>
<description>testDescription</description>
<name>MyPlugin</name>
<versionInfo since-build="1.0" until-build="1.1"/>
<idea-version since-build="1.0" until-build="1.1"/>
</plugin>
<plugin id="other.plugin" url="./otherPlugin/oldFile.zip" version="1.2.3">
<name>DifferentName</name>
Expand Down

0 comments on commit 903dfe7

Please sign in to comment.