Skip to content

Commit cb1b334

Browse files
committed
Prepare release 2.18.2
1 parent f63883a commit cb1b334

File tree

3 files changed

+14
-10
lines changed

3 files changed

+14
-10
lines changed

CHANGELOG

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2.18.2
2+
Dec 14, 2021
3+
4+
FIX: java.lang.NullPointerException #320
5+
FIX: Exception when Show info balloon is not selected #318
6+
17
2.18.1
28
Nov 04, 2021
39

build.gradle

+8-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jacocoTestReport {
2727
}
2828

2929
group 'net.seesharpsoft.intellij.plugins'
30-
version '2.18.1'
30+
version '2.18.2'
3131

3232
apply plugin: 'java'
3333
project.sourceCompatibility = JavaVersion.VERSION_11
@@ -79,10 +79,16 @@ apply plugin: 'org.jetbrains.intellij'
7979
intellij {
8080
// IDE version - https://www.jetbrains.com/intellij-repository/releases
8181
version = System.getenv().getOrDefault('IDEA_VERSION', 'IC-2020.1.1')
82-
pluginName = 'CSV Plugin'
82+
pluginName = 'CSV'
8383
updateSinceUntilBuild = false
8484
downloadSources = Boolean.parseBoolean(System.getenv().getOrDefault('IDEA_SOURCES', "true"))
8585
}
86+
patchPluginXml {
87+
changeNotes = """<pre style="font-family: sans-serif">
88+
FIX: java.lang.NullPointerException #320
89+
FIX: Exception when Show info balloon is not selected #318
90+
</pre>"""
91+
}
8692
publishPlugin {
8793
token = System.getenv().getOrDefault('JI_TOKEN', '')
8894
channels = [System.getenv().getOrDefault('JI_CHANNELS', 'Testing')]

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

-8
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,6 @@
4848
</p>
4949
]]></description>
5050

51-
<change-notes><![CDATA[
52-
<pre style="font-family: sans-serif">
53-
FIX: set require-restart attribute
54-
NEW: Ability to open urls from IntelliJ CSV view #312
55-
</pre>
56-
]]>
57-
</change-notes>
58-
5951
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
6052
<idea-version since-build="201" />
6153

0 commit comments

Comments
 (0)