Skip to content

Commit a690ef8

Browse files
committed
[INTERNAL] prepare for new release
1 parent 0eb21f1 commit a690ef8

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ env:
66
- IDEA_VERSION=IC-2016.3.2 GRAMMAR_KIT_VERSION=1.4.3
77
- IDEA_VERSION=IC-2017.3.2 GRAMMAR_KIT_VERSION=2017.1.2
88
- IDEA_VERSION=IC-2018.3.2 GRAMMAR_KIT_VERSION=2017.1.7
9-
- IDEA_VERSION=IC-2019.2.1 GRAMMAR_KIT_VERSION=2017.1.7
10-
- IDEA_VERSION=PC-LATEST-EAP-SNAPSHOT GRAMMAR_KIT_VERSION=07f30a1e7666f36ae780f614b6bbc89690ba36c3
9+
- IDEA_VERSION=IC-2019.2.2 GRAMMAR_KIT_VERSION=2017.1.7
10+
# - IDEA_VERSION=PC-LATEST-EAP-SNAPSHOT GRAMMAR_KIT_VERSION=07f30a1e7666f36ae780f614b6bbc89690ba36c3
1111

1212
script: xvfb-run gradle check
1313

CHANGELOG

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2.7.0
2+
Sep 16, 2019
3+
4+
NEW: add separator selection to table editor #140
5+
FIX: coloring of table cells (e.g. selection mode)
6+
FIX: enter edit mode via keyboard (e.g. ENTER key in cell)
7+
18
2.6.4
29
Aug 30, 2019
310

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# https://www.jetbrains.com/intellij-repository/snapshots
44

55
name='CSV Plugin'
6-
pluginVersion=2.6.4
6+
pluginVersion=2.7.0
77
javaVersion=1.8
88
javaTargetVersion=1.8
99
downloadIntellijSources=false

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,18 @@ FIX: auto cell height computation
5353
</change-notes>
5454

5555
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
56-
<idea-version since-build="163.10154"/>
56+
<idea-version since-build="163.10154" until-build="192.6603.28"/>
5757

5858
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
5959
on how to target different products -->
6060
<depends>com.intellij.modules.lang</depends>
6161

6262
<extensions defaultExtensionNs="com.intellij">
63+
<fileType name="FileType_CSV" implementationClass="net.seesharpsoft.intellij.plugins.csv.CsvFileType" extensions="csv"/>
64+
<fileType name="FileType_TSV" implementationClass="net.seesharpsoft.intellij.plugins.tsv.TsvFileType" extensions="tsv;tab"/>
65+
<fileType name="FileType_PSV" implementationClass="net.seesharpsoft.intellij.plugins.psv.PsvFileType" extensions="psv"/>
66+
67+
<!-- backward compatibility -->
6368
<fileTypeFactory implementation="net.seesharpsoft.intellij.plugins.csv.CsvFileTypeFactory"/>
6469
<fileTypeFactory implementation="net.seesharpsoft.intellij.plugins.tsv.TsvFileTypeFactory"/>
6570
<fileTypeFactory implementation="net.seesharpsoft.intellij.plugins.psv.PsvFileTypeFactory"/>

0 commit comments

Comments
 (0)