Skip to content

Commit

Permalink
Merge pull request #40 from Kordyjan/scala-3.4.0
Browse files Browse the repository at this point in the history
Update Scala to 3.4.0
  • Loading branch information
nicolasstucki authored Feb 29, 2024
2 parents a7da2e7 + f5590a5 commit e8034b3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/g8/build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
val scala3Version = "3.3.1"
val scala3Version = "3.4.0"

lazy val lib = project
.in(file("lib"))
Expand Down
2 changes: 1 addition & 1 deletion src/main/g8/inspector/src/main/scala/inspector/Main.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ package inspector
import scala.quoted._

@main def run =
val tastyFile = "lib/target/scala-3.3.1/classes/lib/Greetings.tasty"
val tastyFile = "lib/target/scala-3.4.0/classes/lib/Greetings.tasty"
val tastyContents = Inspector.showCodeOf(tastyFile)
println(tastyContents)
2 changes: 1 addition & 1 deletion src/main/g8/inspector/src/test/scala/inspector/Test.scala
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class InspectorTest {
| def hello(name: scala.Predef.String): scala.Predef.String = "Hello ".+(name)
| }
|}""".stripMargin,
Inspector.showCodeOf("lib/target/scala-3.3.1/classes/lib/Greetings.tasty")
Inspector.showCodeOf("lib/target/scala-3.4.0/classes/lib/Greetings.tasty")
)

}
Expand Down

0 comments on commit e8034b3

Please sign in to comment.