Skip to content

Commit 009e8b1

Browse files
committed
Release 3.1.3
1 parent f406ba8 commit 009e8b1

File tree

3 files changed

+53
-47
lines changed

3 files changed

+53
-47
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
# Changelog
44

5+
## [3.1.3] - 2022-01-31
6+
7+
### Fixed
8+
9+
- Compatibility with EAP 2022.1.
10+
511
## [3.1.2] - 2021-12-09
612

713
### Fixed

build.gradle

Lines changed: 44 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
2-
id 'org.jetbrains.grammarkit' version '2021.1.3'
3-
id 'org.jetbrains.intellij' version '1.3.0'
2+
id 'org.jetbrains.grammarkit' version '2021.2.1'
3+
id 'org.jetbrains.intellij' version '1.3.1'
44
id 'com.github.ManifestClasspath' version '0.1.0-RELEASE'
55
id 'org.jetbrains.changelog' version '1.3.1'
66
}
@@ -54,7 +54,7 @@ intellij {
5454
}
5555

5656
runPluginVerifier {
57-
ideVersions = ['IU-2020.3.1', 'IU-2021.1', 'IU-2021.2', 'IU-2021.3']
57+
ideVersions = ['IU-2020.3.1', 'IU-2021.1', 'IU-2021.2', 'IU-2021.3', 'IU-2022.1']
5858
}
5959

6060
runIde {
@@ -71,47 +71,47 @@ sourceSets {
7171

7272
}
7373

74-
// import is optional to make task creation easier
75-
76-
import org.jetbrains.grammarkit.tasks.GenerateLexer
77-
import org.jetbrains.grammarkit.tasks.GenerateParser
78-
79-
// GraphQL parser should be generated manually when needed
80-
// because of some limitations of the gradle-grammar-kit-plugin
81-
82-
// GraphQL Endpoint Parser and Lexer
83-
task generateGraphQLEndpointLexer(type: GenerateLexer) {
84-
source 'src/grammars/JSGraphQLEndpointLexer.flex'
85-
targetDir 'gen/com/intellij/lang/jsgraphql/endpoint/lexer/'
86-
targetClass 'JSGraphQLEndpointLexer'
87-
purgeOldFiles = true
88-
}
89-
90-
task generateGraphQLEndpointParser(type: GenerateParser) {
91-
source 'src/grammars/JSGraphQLEndpointParser.bnf'
92-
targetRoot = 'gen/'
93-
purgeOldFiles = true
94-
pathToParser = 'com/intellij/lang/jsgraphql/endpoint/parser/JSGraphQLEndpointParser'
95-
pathToPsiRoot = 'com/intellij/lang/jsgraphql/endpoint/psi'
96-
}
97-
98-
99-
// GraphQL Endpoint Doc Parser and Lexer
100-
task generateGraphQLEndpointDocLexer(type: GenerateLexer) {
101-
source 'src/grammars/JSGraphQLEndpointDocLexer.flex'
102-
targetDir 'gen/com/intellij/lang/jsgraphql/endpoint/doc/lexer/'
103-
targetClass 'JSGraphQLEndpointDocLexer'
104-
purgeOldFiles = true
105-
}
106-
107-
task generateGraphQLEndpointDocParser(type: GenerateParser) {
108-
source 'src/grammars/JSGraphQLEndpointDocParser.bnf'
109-
targetRoot = 'gen/'
110-
purgeOldFiles = true
111-
pathToParser = 'com/intellij/lang/jsgraphql/endpoint/doc/JSGraphQLEndpointDocParser'
112-
pathToPsiRoot = 'com/intellij/lang/jsgraphql/endpoint/doc/psi'
113-
}
114-
74+
//// import is optional to make task creation easier
75+
//
76+
//import org.jetbrains.grammarkit.tasks.GenerateLexer
77+
//import org.jetbrains.grammarkit.tasks.GenerateParser
78+
//
79+
//// GraphQL parser should be generated manually when needed
80+
//// because of some limitations of the gradle-grammar-kit-plugin
81+
//
82+
//// GraphQL Endpoint Parser and Lexer
83+
//task generateGraphQLEndpointLexer(type: GenerateLexer) {
84+
// source 'src/grammars/JSGraphQLEndpointLexer.flex'
85+
// targetDir 'gen/com/intellij/lang/jsgraphql/endpoint/lexer/'
86+
// targetClass 'JSGraphQLEndpointLexer'
87+
// purgeOldFiles = true
88+
//}
89+
//
90+
//task generateGraphQLEndpointParser(type: GenerateParser) {
91+
// source 'src/grammars/JSGraphQLEndpointParser.bnf'
92+
// targetRoot = 'gen/'
93+
// purgeOldFiles = true
94+
// pathToParser = 'com/intellij/lang/jsgraphql/endpoint/parser/JSGraphQLEndpointParser'
95+
// pathToPsiRoot = 'com/intellij/lang/jsgraphql/endpoint/psi'
96+
//}
97+
//
98+
//
99+
//// GraphQL Endpoint Doc Parser and Lexer
100+
//task generateGraphQLEndpointDocLexer(type: GenerateLexer) {
101+
// source 'src/grammars/JSGraphQLEndpointDocLexer.flex'
102+
// targetDir 'gen/com/intellij/lang/jsgraphql/endpoint/doc/lexer/'
103+
// targetClass 'JSGraphQLEndpointDocLexer'
104+
// purgeOldFiles = true
105+
//}
106+
//
107+
//task generateGraphQLEndpointDocParser(type: GenerateParser) {
108+
// source 'src/grammars/JSGraphQLEndpointDocParser.bnf'
109+
// targetRoot = 'gen/'
110+
// purgeOldFiles = true
111+
// pathToParser = 'com/intellij/lang/jsgraphql/endpoint/doc/JSGraphQLEndpointDocParser'
112+
// pathToPsiRoot = 'com/intellij/lang/jsgraphql/endpoint/doc/psi'
113+
//}
114+
//
115115
//compileJava {
116116
// dependsOn generateGraphQLEndpointLexer
117117
// dependsOn generateGraphQLEndpointParser

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ org.gradle.configureondemand=true
44
org.gradle.jvmargs=-Xmx3g -XX:MaxPermSize=2048m
55

66
pluginGroup=com.intellij.lang.jsgraphql
7-
pluginVersion=3.1.2
7+
pluginVersion=3.1.3
88
pluginSinceBuild=211.0
9-
pluginUntilBuild=213.*
9+
pluginUntilBuild=221.*
1010

1111
platformType=IU
12-
platformVersion=IU-213-EAP-SNAPSHOT
12+
platformVersion=IU-221-EAP-SNAPSHOT

0 commit comments

Comments
 (0)