Skip to content

Commit e084797

Browse files
committedAug 25, 2019
[INTERNAL] switch to token based auth - prepare release 2.6.3
1 parent 3495ba6 commit e084797

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed
 

‎CHANGELOG

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2.6.3
2+
Aug 25, 2019
3+
4+
FIX: Index out of bound error on multi line clear cells #151
5+
16
2.6.2
27
Aug 09, 2019
38

‎build.gradle

+1-2
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,7 @@ intellij {
7878
downloadSources = false
7979
}
8080
publishPlugin {
81-
username = System.getenv().getOrDefault('JI_USER', '')
82-
password = System.getenv().getOrDefault('JI_PASSWORD', '')
81+
token = System.getenv().getOrDefault('JI_TOKEN', '')
8382
channels = [System.getenv().getOrDefault('JI_CHANNELS', 'Testing')]
8483
}
8584

‎gradle.properties

+1-1
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.2
6+
pluginVersion=2.6.3
77
javaVersion=1.8
88
javaTargetVersion=1.8
99
downloadIntellijSources=false

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

+1-2
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,7 @@
4646

4747
<change-notes><![CDATA[
4848
<pre style="font-family: sans-serif">
49-
FIX: AssertionError: Already disposed Project #147
50-
FIX: No fallback font used in table editor #145
49+
FIX: Index out of bound error on multi line clear cells #151
5150
</pre>
5251
]]>
5352
</change-notes>

0 commit comments

Comments
 (0)
Please sign in to comment.