Skip to content
This repository has been archived by the owner on Nov 30, 2024. It is now read-only.

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rikvdkleij committed Jun 26, 2021
1 parent 1675eb1 commit 96631b2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
lazy val commonSettings = Seq(
version := "1.0.0-beta85",
scalaVersion := "2.13.3"
scalaVersion := "2.13.6"
)

val scalaTest = "org.scalatest" %% "scalatest" % "3.2.0" % Test
val sprayJson = "io.spray" %% "spray-json" % "1.3.6"
val snakeYaml = "org.yaml" % "snakeyaml" % "1.26"
val scaffeine = "com.github.blemale" %% "scaffeine" % "4.0.2"
val directories = "io.github.soc" % "directories" % "12"
val fastparse = "com.lihaoyi" %% "fastparse" % "2.2.2"
val fastparse = "com.lihaoyi" %% "fastparse" % "2.3.1"

intellijPluginName in ThisBuild := "IntelliJ-Haskell"

Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.4.5
sbt.version=1.5.3
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("org.jetbrains" % "sbt-idea-plugin" % "3.8.3")
addSbtPlugin("org.jetbrains" % "sbt-idea-plugin" % "3.12.5")

resolvers += Resolver.url("jetbrains-bintray",
url("https://dl.bintray.com/jetbrains/sbt-plugins/"))(Resolver.ivyStylePatterns)
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class HaskellNamesValidator extends NamesValidator {

override def isKeyword(name: String, project: Project): Boolean = {
val lexer = new HaskellLexer
lexer.start(name.toCharArray)
lexer.start(name)
HaskellParserDefinition.ReservedIdS.contains(lexer.getTokenType) ||
HaskellParserDefinition.ReservedOperators.contains(lexer.getTokenType) ||
HaskellParserDefinition.SymbolsResOp.contains(lexer.getTokenType)
Expand Down

0 comments on commit 96631b2

Please sign in to comment.