Skip to content

Commit e8791a2

Browse files
authored
Merge pull request #41 from Kordyjan/scala-3.4.1
Update Scala to 3.4.1
2 parents e8034b3 + e9971c4 commit e8791a2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/main/g8/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
val scala3Version = "3.4.0"
1+
val scala3Version = "3.4.1"
22

33
lazy val lib = project
44
.in(file("lib"))

src/main/g8/inspector/src/main/scala/inspector/Main.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ package inspector
33
import scala.quoted._
44

55
@main def run =
6-
val tastyFile = "lib/target/scala-3.4.0/classes/lib/Greetings.tasty"
6+
val tastyFile = "lib/target/scala-3.4.1/classes/lib/Greetings.tasty"
77
val tastyContents = Inspector.showCodeOf(tastyFile)
88
println(tastyContents)

src/main/g8/inspector/src/test/scala/inspector/Test.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class InspectorTest {
1414
| def hello(name: scala.Predef.String): scala.Predef.String = "Hello ".+(name)
1515
| }
1616
|}""".stripMargin,
17-
Inspector.showCodeOf("lib/target/scala-3.4.0/classes/lib/Greetings.tasty")
17+
Inspector.showCodeOf("lib/target/scala-3.4.1/classes/lib/Greetings.tasty")
1818
)
1919

2020
}

0 commit comments

Comments
 (0)