Skip to content

Commit

Permalink
[ release ] Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ice1000 committed Sep 9, 2019
1 parent bca3e0b commit 1b8268f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ val commitHash = kotlin.run {
output.trim()
}

val pluginComingVersion = "0.2.6"
val pluginComingVersion = "0.2.7"
val pluginVersion = if (isCI) "$pluginComingVersion-$commitHash" else pluginComingVersion
val packageName = "rs.pest"
val asmble = "asmble"
Expand All @@ -32,10 +32,10 @@ version = pluginVersion

plugins {
java
id("org.jetbrains.intellij") version "0.4.9"
id("org.jetbrains.intellij") version "0.4.10"
id("org.jetbrains.grammarkit") version "2019.2"
id("de.undercouch.download") version "3.4.3"
kotlin("jvm") version "1.3.30"
kotlin("jvm") version "1.3.50"
}

allprojects { apply { plugin("org.jetbrains.grammarkit") } }
Expand Down Expand Up @@ -72,7 +72,7 @@ intellij {
pycharmPath?.absolutePath?.let { alternativeIdePath = it }

if (!isCI) setPlugins("PsiViewer:192-SNAPSHOT")
setPlugins("org.rust.lang:0.2.98.2126-192", "java")
setPlugins("org.rust.lang:0.2.105.2133-192", "java")
}

java {
Expand Down Expand Up @@ -209,7 +209,7 @@ val genParser = task<GenerateParser>("genParser") {
description = "Generate the Parser and PsiElement classes"
source = "grammar/pest.bnf"
targetRoot = "gen/"
val parserRoot = Paths.get("rs", "pest")!!
val parserRoot = Paths.get("rs", "pest")
pathToParser = path(parserRoot + "PestParser.java")
pathToPsiRoot = path(parserRoot + "psi")
purgeOldFiles = true
Expand Down

0 comments on commit 1b8268f

Please sign in to comment.