Skip to content

Commit

Permalink
Bump version to 0.7.0. Also, upgrade dependency versions (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
albertoventurini authored Sep 5, 2023
1 parent e6af09a commit fece746
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ plugins {
// https://github.com/JetBrains/gradle-changelog-plugin
id 'org.jetbrains.changelog' version "$versionGradleChangelog"

id 'org.jetbrains.grammarkit' version "2021.2.2"
id 'org.jetbrains.grammarkit' version "2022.3.1"
}

apply plugin: 'idea'
Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
version=0.6.2
version=0.7.0

# Intellij SDK
intellijSdkVersion=2023.2

# Versions
versionGradleIntelliJ=1.13.3
versionGradleIntelliJ=1.15.0
versionGradleChangelog=2.0.0
versionGradleGrammarKit=2021.2.2
versionGradleGrammarKit=2022.3.1
versionJunit=4.12
versionAssertj=3.23.1
versionMockito=2.27.0
versionPrefuse=1.0.0
versionJacksonMapper=2.9.8
versionJacksonMapper=2.15.2
# Official compatibility table https://neo4j.com/developer/kb/neo4j-supported-versions/
versionNeo4jJavaBoltDriver=5.10.0
versionNeo4jJavaBoltDriver=5.11.0
versionTestcontainers=1.17.6

# Performance
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
4 changes: 2 additions & 2 deletions language/cypher/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ intellij {
}

tasks.register("generateCypherLexer", GenerateLexerTask.class) {
source = "src/main/java/com/albertoventurini/graphdbplugin/language/cypher/lexer/CypherLexer.flex"
sourceFile = new File("src/main/java/com/albertoventurini/graphdbplugin/language/cypher/lexer/CypherLexer.flex")
targetDir = "src/main/gen/com/albertoventurini/graphdbplugin/language/cypher/lexer/"
targetClass = "CypherLexer"
purgeOldFiles = true
}

tasks.register("generateCypherParser", GenerateParserTask.class) {
source = "src/main/java/com/albertoventurini/graphdbplugin/language/cypher/lexer/Cypher.bnf"
sourceFile = new File("src/main/java/com/albertoventurini/graphdbplugin/language/cypher/lexer/Cypher.bnf")
targetRoot = "src/main/gen"
pathToParser = "com/albertoventurini/graphdbplugin/language/cypher/CypherParser.java"
pathToPsiRoot = "com/albertoventurini/graphdbplugin/language/cypher/psi"
Expand Down

0 comments on commit fece746

Please sign in to comment.