Skip to content

Commit

Permalink
Update to 3.3.3 LTS version
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasstucki committed Mar 18, 2024
1 parent 7c9c03b commit 0b59b69
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
val dottyVersion = "3.1.2" // dottyLatestNightlyBuild.get
val dottyVersion = "3.3.3" // dottyLatestNightlyBuild.get

lazy val root = project
.in(file("."))
.settings(
name := "dotty-xml-interpolator",
name := "scala-xml-interpolator",
version := "0.1.0",

scalaVersion := dottyVersion,
scalacOptions ++= Seq(
"-Xprint-inline"
"-deprecation"
),
libraryDependencies ++= Seq(
"org.scala-lang.modules" % "scala-parser-combinators_2.13" % "1.1.2",
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/dotty/xml/interpolator/internal/Macro.scala
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ object Macro {

def appendPart(part: Expr[String]) = {
bf += sb.length
sb ++= part.valueOrError
sb ++= part.valueOrAbort
bf += sb.length
}

Expand Down

0 comments on commit 0b59b69

Please sign in to comment.