Skip to content

Commit a395c20

Browse files
committed
Update to 3.0.0-M3
1 parent 3c73a6c commit a395c20

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/main/g8/build.sbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
val dottyVersion = "3.0.0-M2"
1+
val scala3Version = "3.0.0-M3"
22

33
lazy val lib = project
44
.in(file("lib"))
55
.settings(
66
name := "lib",
77
version := "0.1.0",
88

9-
scalaVersion := dottyVersion,
9+
scalaVersion := scala3Version,
1010

1111
libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % "test"
1212
)
@@ -17,10 +17,10 @@ lazy val inspector = project
1717
name := "inspector",
1818
version := "0.1.0",
1919

20-
scalaVersion := dottyVersion,
20+
scalaVersion := scala3Version,
2121

2222
libraryDependencies ++= Seq(
23-
"org.scala-lang" %% "scala3-tasty-inspector" % dottyVersion,
23+
"org.scala-lang" %% "scala3-tasty-inspector" % scala3Version,
2424
"com.novocode" % "junit-interface" % "0.11" % "test"
2525
)
2626
)

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,7 +3,7 @@ package inspector
33
import scala.quoted._
44

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

src/main/g8/project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.4.6")
1+
addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.5.0")

0 commit comments

Comments
 (0)