Skip to content

Commit

Permalink
Merge pull request #71 from RabotaRu/v3.14.0
Browse files Browse the repository at this point in the history
v3.14.0
  • Loading branch information
rpiontik authored Apr 24, 2024
2 parents 816bd37 + 98061fe commit 00ef560
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 24 deletions.
15 changes: 8 additions & 7 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -73,26 +73,27 @@ tasks.jar {
}

val generateJSONataLexer = tasks.register<GenerateLexerTask>("genJSONataLexer") {

description = "Generated Jsonata lexer"
group = "build setup"
source.set(flexPath)
targetDir.set(genLexerPath)
targetClass.set(genLexerClassName)
sourceFile.set(File(flexPath))
targetOutputDir.set(File(genLexerPath))
purgeOldFiles.set(genLexerPurgeOldFiles.toBoolean())
}

val generateJSONataParser = tasks.register<GenerateParserTask>("genJSONataParser") {
dependsOn(generateJSONataLexer)
description = "Generated Jsonata parser"
group = "build setup"
source.set(bnfPath)
targetRoot.set(genPath)

pathToParser.set(genParserClassPath)
pathToPsiRoot.set(genPsiPath)
purgeOldFiles.set(genParserPurgeOldFiles.toBoolean())

parserFile.set(project.file(genParserClassPath))
psiDir.set(project.file(genPath))
sourceFile.set(File(bnfPath))
targetRootOutputDir.set(File(genPath))
pathToParser.set(genParserClassPath)
pathToPsiRoot.set(genPsiPath)
sourceFile.set(project.file(bnfPath))
targetRootOutputDir.set(project.file(genPath))
}
Expand Down
14 changes: 7 additions & 7 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
# Project Properties
group=org.dochub.idea
version=3.13.0
version=3.14.0

# Supported build number ranges and IntelliJ Platform versions
pluginSinceBuild=231
pluginUntilBuild=233.*
pluginUntilBuild=241.*

# IntelliJ Platform Properties
platformType=IC
platformVersion=2023.3.2
platformVersion=2024.1

# Plugin Dependencies
platformPlugins=com.intellij.java,org.jetbrains.plugins.yaml

# Plugins
kotlinVersion=1.9.10
gradleIntellijPluginVersion=1.16.0
grammarKitVersion=2022.3
kotlinVersion=1.9.23
gradleIntellijPluginVersion=1.17.3
grammarKitVersion=2022.3.2.2

# Dependencies
junitVersion=5.8.1
JSONataVersion=1.6.1
JSONataVersion=2.4.8
plantumlVersion=1.2023.8
elkVersion=0.8.1

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<p>
This release includes:
<ul>
<li>DocHub core: v3.8.0;</li>
<li>DocHub core: v3.10.0;</li>
<li>Suggests for the structure of architecture manifests (yaml);</li>
<li>Suggests for the values of manifest fields;</li>
<li>Fast navigation through manifests;</li>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/html/change-notes.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Beta version of DocHub Plugin<br>
<em>
<ul>
<li>DocHub core: v3.8.0;</li>
<li>DocHub core: v3.10.0;</li>
<li>Suggests for the structure of architecture manifests (yaml);</li>
<li>Suggests for the values of manifest fields;</li>
<li>Fast navigation through manifests;</li>
Expand Down
22 changes: 14 additions & 8 deletions src/main/resources/html/plugin.html

Large diffs are not rendered by default.

0 comments on commit 00ef560

Please sign in to comment.