Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): Update munit from 1.0.1 to 1.0.4 #114

Merged
merged 1 commit into from
Mar 15, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ trait Common extends CrossScalaModule with ScalafmtModule with ScalafixModule {
val unrollVersion = "0.1.12"

override def scalafixConfig: T[Option[Path]] = T {
if (scalaVersion() == scala3) Some(os.pwd / ".scalafix3.conf")
else Some(os.pwd / ".scalafix.conf")
if (scalaVersion() == scala3) Some(os.pwd / ".scalafix3.conf")
else Some(os.pwd / ".scalafix.conf")
}

override def ivyDeps = Agg(
ivy"com.github.plokhotnyuk.jsoniter-scala::jsoniter-scala-core::$jsoniterVersion",
ivy"com.lihaoyi::unroll-annotation:$unrollVersion"
Expand All @@ -64,7 +64,8 @@ trait Common extends CrossScalaModule with ScalafmtModule with ScalafixModule {
ivy"com.github.plokhotnyuk.jsoniter-scala::jsoniter-scala-macros::$jsoniterVersion"
)

override def scalacOptions = Seq("-Ywarn-unused", "-deprecation", "-release", "8")
override def scalacOptions =
Seq("-Ywarn-unused", "-deprecation", "-release", "8")

override def scalacPluginIvyDeps = T {
super.scalacPluginIvyDeps() ++
Expand All @@ -73,7 +74,7 @@ trait Common extends CrossScalaModule with ScalafmtModule with ScalafixModule {
}

trait CommonTest extends ScalaModule with TestModule.Munit {
def ivyDeps = Agg(ivy"org.scalameta::munit::1.0.1")
def ivyDeps = Agg(ivy"org.scalameta::munit::1.0.4")
}

object config extends Cross[ConfigModule](scalaVersions)
Expand Down