Skip to content

Commit 5b29fd8

Browse files
committed
Merge branch 'release/0.7.5'
2 parents 7c108e0 + df37182 commit 5b29fd8

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

build.gradle

+12-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
plugins {
22
id 'java'
3-
id 'org.jetbrains.intellij' version '0.4.18'
3+
id 'org.jetbrains.intellij' version '0.6.4'
44
}
55

66
compileJava {
77
options.compilerArgs += ["-Xlint"]
88
}
99

1010
group 'gitflow4idea'
11-
version '0.7.4'
11+
version '0.7.5'
1212

1313
sourceCompatibility = JavaVersion.VERSION_1_8
1414
targetCompatibility = JavaVersion.VERSION_1_8
@@ -22,18 +22,24 @@ dependencies {
2222
}
2323

2424
intellij {
25-
version '2020.2'
25+
version '2020.3'
2626
plugins 'git4idea', 'tasks'
2727
}
2828

2929
patchPluginXml {
3030
pluginId "Gitflow"
3131
pluginDescription 'Git Flow Integration'
32-
version '0.7.4'
33-
sinceBuild '201.0'
34-
untilBuild '202.*'
32+
version '0.7.5'
33+
sinceBuild '203.0'
34+
untilBuild '203.*'
3535
changeNotes """
3636
37+
<H2>Changelog for 0.7.5</H2>
38+
<ul>
39+
<li>PluginException: Icon cannot be found in 'AllIcons.Vcs.CheckOut' #314 (@tumb1er)</li>
40+
<li>Support for 2020.3 build</li>
41+
</ul>
42+
3743
<H2>Changelog for 0.7.4</H2>
3844
<ul>
3945
<li>Fix deprecations #298 (@fabmars)</li>

src/main/resources/META-INF/plugin.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
/>
4040
<action id="Gitflow.TrackFeature" class="gitflow.actions.TrackFeatureAction"
4141
text="Track Feature..."
42-
icon="AllIcons.Vcs.CheckOut"
42+
icon="AllIcons.Actions.CheckOut"
4343
/>
4444

4545
<action id="Gitflow.StartRelease" class="gitflow.actions.StartReleaseAction"

0 commit comments

Comments
 (0)