Skip to content

Commit

Permalink
migrate to scala 2.13
Browse files Browse the repository at this point in the history
  • Loading branch information
dvulpe committed Jun 14, 2020
1 parent def74af commit c7dab4a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name := "ing-parser"

version := "1.0"

scalaVersion := "2.12.8"
scalaVersion := "2.13.2"

libraryDependencies += "org.scalatest" %% "scalatest" % "3.1.2" % "test"

Expand Down
1 change: 1 addition & 0 deletions src/main/scala/ro/dvulpe/ingparser/CSVParser.scala
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package ro.dvulpe.ingparser

import scala.language.postfixOps
import scala.util.parsing.combinator._
import scala.util.parsing.input.Reader

Expand Down
1 change: 1 addition & 0 deletions src/main/scala/ro/dvulpe/ingparser/INGParser.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package ro.dvulpe.ingparser

import java.time.LocalDate

import scala.language.postfixOps
import scala.util.Try
import scala.util.parsing.combinator._

Expand Down

0 comments on commit c7dab4a

Please sign in to comment.