Skip to content

Commit

Permalink
Update to Scala 3 3.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
neko-kai committed May 13, 2024
1 parent 602f064 commit e0edeaa
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ val scalaOpts = scalacOptions ++= ((isSnapshot.value, scalaVersion.value) match
case (_, ScalaVersions.scala_3) => Seq(
"-no-indent",
"-explain",
"-experimental",
)
case (_, _) => Seq.empty
})
Expand Down
2 changes: 1 addition & 1 deletion project/ScalaVersions.scala
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
object ScalaVersions {
val scala_212 = "2.12.19"
val scala_213 = "2.13.14"
val scala_3 = "3.2.2"
val scala_3 = "3.4.1"

val scalaJsVersion = "1.16.0"
val scalaNativeVersion = "0.5.1"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
package izumi.sbtgen.sbtmeta

import scala.annotation.experimental
import scala.quoted.{Expr, Quotes, Type}

@experimental
object MacroParametersImpl {

def extractString(name: Expr[String])(using quotes: Quotes): Expr[Option[String]] = {
Expand Down

0 comments on commit e0edeaa

Please sign in to comment.