Skip to content

Commit

Permalink
Update Scala version to 3.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechMazur committed Dec 10, 2024
1 parent f6eea55 commit 1d5571a
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.5.2"
val scala3Version = "3.6.2"

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.5.2/classes/lib/Greetings.tasty"
val tastyFile = "lib/target/scala-3.6.2/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.5.2/classes/lib/Greetings.tasty")
Inspector.showCodeOf("lib/target/scala-3.6.2/classes/lib/Greetings.tasty")
)

}
Expand Down

0 comments on commit 1d5571a

Please sign in to comment.