Skip to content

Commit

Permalink
Prepare release 2.18.2
Browse files Browse the repository at this point in the history
  • Loading branch information
SeeSharpSoft committed Dec 14, 2021
1 parent f63883a commit cb1b334
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
@@ -1,3 +1,9 @@
2.18.2
Dec 14, 2021

FIX: java.lang.NullPointerException #320
FIX: Exception when Show info balloon is not selected #318

2.18.1
Nov 04, 2021

Expand Down
10 changes: 8 additions & 2 deletions build.gradle
Expand Up @@ -27,7 +27,7 @@ jacocoTestReport {
}

group 'net.seesharpsoft.intellij.plugins'
version '2.18.1'
version '2.18.2'

apply plugin: 'java'
project.sourceCompatibility = JavaVersion.VERSION_11
Expand Down Expand Up @@ -79,10 +79,16 @@ apply plugin: 'org.jetbrains.intellij'
intellij {
// IDE version - https://www.jetbrains.com/intellij-repository/releases
version = System.getenv().getOrDefault('IDEA_VERSION', 'IC-2020.1.1')
pluginName = 'CSV Plugin'
pluginName = 'CSV'
updateSinceUntilBuild = false
downloadSources = Boolean.parseBoolean(System.getenv().getOrDefault('IDEA_SOURCES', "true"))
}
patchPluginXml {
changeNotes = """<pre style="font-family: sans-serif">
FIX: java.lang.NullPointerException #320
FIX: Exception when Show info balloon is not selected #318
</pre>"""
}
publishPlugin {
token = System.getenv().getOrDefault('JI_TOKEN', '')
channels = [System.getenv().getOrDefault('JI_CHANNELS', 'Testing')]
Expand Down
8 changes: 0 additions & 8 deletions src/main/resources/META-INF/plugin.xml
Expand Up @@ -48,14 +48,6 @@
</p>
]]></description>

<change-notes><![CDATA[
<pre style="font-family: sans-serif">
FIX: set require-restart attribute
NEW: Ability to open urls from IntelliJ CSV view #312
</pre>
]]>
</change-notes>

<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
<idea-version since-build="201" />

Expand Down

0 comments on commit cb1b334

Please sign in to comment.