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 43395b7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [3.1.2]
scala: [3.3.3]
java: [temurin@8, temurin@11, temurin@17]
runs-on: ${{ matrix.os }}
steps:
Expand Down
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 43395b7

Please sign in to comment.