Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[INTERNAL] prepare release 2.5.0 #132

Merged
merged 1 commit into from May 16, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG
@@ -1,3 +1,9 @@
2.5.0
May 16, 2019

NEW: PSV file support
FIX: NullPointerException in StorageHelper class

2.4.0
May 11, 2019

Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -14,7 +14,7 @@ This enables default editor features like syntax validation, highlighting and in

## Features

- CSV/TSV file detection
- CSV/TSV/PSV file detection
- table editor
- customizable text editor
- syntax validation
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Expand Up @@ -3,7 +3,7 @@
# https://www.jetbrains.com/intellij-repository/snapshots

name='CSV Plugin'
pluginVersion=2.4.0
pluginVersion=2.5.0
javaVersion=1.8
javaTargetVersion=1.8
downloadIntellijSources=false
7 changes: 3 additions & 4 deletions src/main/resources/META-INF/plugin.xml
Expand Up @@ -13,7 +13,7 @@
Lightweight CSV plugin that supports editing files in CSV/TSV format.<br><br>
<b>Features:</b><br>
<ul>
<li>CSV/TSV file detection</li>
<li>CSV/TSV/PSV file detection</li>
<li>table editor</li>
<li>customizable text editor</li>
<li>syntax validation</li>
Expand Down Expand Up @@ -46,9 +46,8 @@

<change-notes><![CDATA[
<pre style="font-family: sans-serif">
NEW: option to keep/ignore a linebreak at the end of a file (table editor)
NEW: improved change detection of table editor to avoid overwriting original text representation without editing any values
NEW: file based value separator (e.g. ',' or ';')
NEW: PSV file support
FIX: NullPointerException in StorageHelper class
</pre>
]]>
</change-notes>
Expand Down