Skip to content

Commit 43395b7

Browse files
committed
Update to 3.3.3 LTS version
1 parent 7c9c03b commit 43395b7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
matrix:
2424
os: [ubuntu-latest]
25-
scala: [3.1.2]
25+
scala: [3.3.3]
2626
java: [temurin@8, temurin@11, temurin@17]
2727
runs-on: ${{ matrix.os }}
2828
steps:

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
val dottyVersion = "3.1.2" // dottyLatestNightlyBuild.get
1+
val dottyVersion = "3.3.3" // dottyLatestNightlyBuild.get
22

33
lazy val root = project
44
.in(file("."))
55
.settings(
6-
name := "dotty-xml-interpolator",
6+
name := "scala-xml-interpolator",
77
version := "0.1.0",
88

99
scalaVersion := dottyVersion,
1010
scalacOptions ++= Seq(
11-
"-Xprint-inline"
11+
"-deprecation"
1212
),
1313
libraryDependencies ++= Seq(
1414
"org.scala-lang.modules" % "scala-parser-combinators_2.13" % "1.1.2",

src/main/scala/dotty/xml/interpolator/internal/Macro.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ object Macro {
8181

8282
def appendPart(part: Expr[String]) = {
8383
bf += sb.length
84-
sb ++= part.valueOrError
84+
sb ++= part.valueOrAbort
8585
bf += sb.length
8686
}
8787

0 commit comments

Comments
 (0)