Skip to content

Commit 9005830

Browse files
committed
update version and changelog
1 parent d9e8196 commit 9005830

File tree

3 files changed

+28
-18
lines changed

3 files changed

+28
-18
lines changed

.github/workflows/PublishStable.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,10 @@ jobs:
1818
include:
1919
- ideaVersion: 2022.2.1
2020
gkVersion: 2021.1.2
21-
- ideaVersion: LATEST-EAP-SNAPSHOT
21+
- ideaVersion: 2022.3.1
2222
gkVersion: 2021.1.2
23+
# - ideaVersion: LATEST-EAP-SNAPSHOT
24+
# gkVersion: 2021.1.2
2325

2426
steps:
2527
- uses: actions/checkout@v2

CHANGELOG

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
3.0.2
2+
Dec 15, 2022
3+
4+
FIX: Detected bulk mode status update from DocumentBulkUpdateListener #384
5+
FIX: Argument for @NotNull parameter 'parent' of PsiHelper.getNthChildOfType must not be null #372
6+
FIX: Argument for @NotNull parameter 'element' of PsiHelper.getSiblingOfType must not be null #375
7+
FIX: Cannot invoke "Document.getText()" because "document" is null #388
8+
FIX: Cannot invoke "PsiFile.getProject()" because the return value of "CsvPsiTreeUpdater.getPsiFile()" is null #378
9+
FIX: Argument for @NotNull parameter 'replacement' of CsvPsiTreeUpdater$ReplacePsiAction.<init> must not be null #380
10+
FIX: provide project parameter for opening link
11+
FIX: Cannot invoke "Document.insertString(int, java.lang.CharSequence)" because "document" is null #386
12+
FIX: first extension sanity check
13+
114
3.0.1
215
Nov 12, 2022
316

build.gradle

Lines changed: 12 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
// https://github.com/JetBrains/gradle-intellij-plugin
3-
id 'org.jetbrains.intellij' version '1.9.0'
3+
id 'org.jetbrains.intellij' version '1.10.1'
44
id 'jacoco'
55
id 'com.github.kt3k.coveralls' version '2.8.4'
66
id 'com.github.ManifestClasspath' version '0.1.0-RELEASE'
@@ -73,7 +73,7 @@ var final EAP_BUILD = '223'
7373
var idea_version = System.getenv().getOrDefault('IDEA_VERSION', '2022.2.1')
7474
var build_version = idea_version == EAP_VERSION ? EAP_BUILD : idea_version.substring(2, 4) + idea_version.charAt(5) // extract e.g. '221' from '2022.1.1'
7575

76-
version '3.0.1-' + build_version
76+
version '3.0.2-' + build_version
7777

7878
apply plugin: 'org.jetbrains.intellij'
7979
intellij {
@@ -107,15 +107,17 @@ Feedback is welcome!
107107
PS: The previous versions are still available on the project page.
108108
109109
110-
Update 3.0.1
111-
112-
FIX: cannot init component state (componentName=CsvFileAttributes) #359
113-
FIX: cannot invoke "add(Object)" because "this.myUncommittedActions" is null #361
114-
FIX: cannot invoke "createNotification(...)" because "notificationGroup" is null #362
115-
FIX: cannot invoke "getManager()" because the return value of "getPsiFile()" is null #363
116-
FIX: image in plugin description
117-
FIX: plugin update restart
110+
Update 3.0.2
118111
112+
FIX: Detected bulk mode status update from DocumentBulkUpdateListener #384
113+
FIX: Argument for @NotNull parameter 'parent' of PsiHelper.getNthChildOfType must not be null #372
114+
FIX: Argument for @NotNull parameter 'element' of PsiHelper.getSiblingOfType must not be null #375
115+
FIX: Cannot invoke "Document.getText()" because "document" is null #388
116+
FIX: Cannot invoke "PsiFile.getProject()" because the return value of "CsvPsiTreeUpdater.getPsiFile()" is null #378
117+
FIX: Argument for @NotNull parameter 'replacement' of CsvPsiTreeUpdater$ReplacePsiAction.<init> must not be null #380
118+
FIX: provide project parameter for opening link
119+
FIX: Cannot invoke "Document.insertString(int, java.lang.CharSequence)" because "document" is null #386
120+
FIX: first extension sanity check
119121
120122
</pre>"""
121123
}
@@ -164,10 +166,3 @@ tasks.named("generateLexer").configure {
164166
compileJava {
165167
dependsOn generateLexer
166168
}
167-
168-
// TODO https://youtrack.jetbrains.com/issue/IDEA-298989 - remove after gradle plugin v1.9.1 or v1.10.0 released
169-
setupDependencies {
170-
doLast {
171-
fileTree("$buildDir/instrumented/instrumentCode") { include("**/*TableEditorSwing.class") }.files.forEach { delete(it) }
172-
}
173-
}

0 commit comments

Comments
 (0)