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

Update munit to 1.0.1 #134

Merged
merged 2 commits into from
Aug 20, 2024
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.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,18 @@ ThisBuild / crossScalaVersions := Seq(

lazy val root = tlCrossRootProject.aggregate(lib)

lazy val munitVersion = "1.0.0"
lazy val scalacheckVersion = "1.18.0"
lazy val munitVersion = "1.0.1"
lazy val scalacheckVersion = "1.18.0"
lazy val munitScalacheckVersion = "1.0.0"

lazy val lib = crossProject(JVMPlatform, JSPlatform)
.crossType(CrossType.Pure)
.in(file("lib"))
.settings(
name := "scalac-options",
libraryDependencies ++= Seq(
"org.scalameta" %%% "munit" % munitVersion % Test,
"org.scalacheck" %%% "scalacheck" % scalacheckVersion % Test,
"org.scalameta" %%% "munit-scalacheck" % munitVersion % Test
"org.scalameta" %%% "munit" % munitVersion % Test,
"org.scalacheck" %%% "scalacheck" % scalacheckVersion % Test,
"org.scalameta" %%% "munit-scalacheck" % munitScalacheckVersion % Test
Copy link
Contributor

@satorg satorg Aug 15, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like Scalameta diverged munit and munit-scalacheck versions eventually. Disuniting them here as well.

)
)