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

chore(deps): update various deps #431

Merged
merged 4 commits into from
May 19, 2022
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version = "3.3.1"
version = "3.5.4"
project.git = true
runner.dialect = "scala213"
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.6.1
sbt.version=1.6.2
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
libraryDependencies += "org.scala-sbt" %% "scripted-plugin" % sbtVersion.value
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.10.0")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
2 changes: 1 addition & 1 deletion src/sbt-test/scoverage/aggregate-disabled-module/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ inThisBuild(
List(
organization := "org.scoverage",
scalaVersion := "2.13.6",
libraryDependencies += "org.scalameta" %% "munit" % "0.7.25" % Test
libraryDependencies += "org.scalameta" %% "munit" % "0.7.29" % Test
)
)

Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/scoverage/aggregate-only/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def module(name: String) = {
.settings(commonSettings: _*)
.settings(
Keys.name := name,
libraryDependencies += "org.scalameta" %% "munit" % "0.7.25" % Test
libraryDependencies += "org.scalameta" %% "munit" % "0.7.29" % Test
)
}

Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/scoverage/aggregate/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def module(name: String) = {
.settings(commonSettings: _*)
.settings(
Keys.name := name,
libraryDependencies += "org.scalameta" %% "munit" % "0.7.25" % Test
libraryDependencies += "org.scalameta" %% "munit" % "0.7.29" % Test
)
}

Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/scoverage/bad-coverage-file-branch/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version := "0.1"

scalaVersion := "2.13.6"

libraryDependencies += "org.scalameta" %% "munit" % "0.7.25" % Test
libraryDependencies += "org.scalameta" %% "munit" % "0.7.29" % Test

coverageMinimumBranchPerFile := 80

Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/scoverage/bad-coverage-file-stmt/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version := "0.1"

scalaVersion := "2.13.6"

libraryDependencies += "org.scalameta" %% "munit" % "0.7.25" % Test
libraryDependencies += "org.scalameta" %% "munit" % "0.7.29" % Test

coverageMinimumStmtPerFile := 90

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version := "0.1"

scalaVersion := "2.13.6"

libraryDependencies += "org.scalameta" %% "munit" % "0.7.25" % Test
libraryDependencies += "org.scalameta" %% "munit" % "0.7.29" % Test

coverageMinimumBranchPerPackage := 80

Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/scoverage/bad-coverage-package-stmt/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version := "0.1"

scalaVersion := "2.13.6"

libraryDependencies += "org.scalameta" %% "munit" % "0.7.25" % Test
libraryDependencies += "org.scalameta" %% "munit" % "0.7.29" % Test

coverageMinimumStmtPerPackage := 80

Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/scoverage/bad-coverage-total-branch/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version := "0.1"

scalaVersion := "2.13.6"

libraryDependencies += "org.scalameta" %% "munit" % "0.7.25" % Test
libraryDependencies += "org.scalameta" %% "munit" % "0.7.29" % Test

coverageMinimumBranchTotal := 80

Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/scoverage/bad-coverage-total-stmt/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version := "0.1"

scalaVersion := "2.13.6"

libraryDependencies += "org.scalameta" %% "munit" % "0.7.25" % Test
libraryDependencies += "org.scalameta" %% "munit" % "0.7.29" % Test

coverageMinimumStmtTotal := 80

Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/scoverage/bad-coverage/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version := "0.1"

scalaVersion := "2.13.6"

libraryDependencies += "org.scalameta" %% "munit" % "0.7.25" % Test
libraryDependencies += "org.scalameta" %% "munit" % "0.7.29" % Test

coverageMinimum := 80

Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/scoverage/coverage-off/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version := "0.1"

scalaVersion := "2.13.6"

libraryDependencies += "org.scalameta" %% "munit" % "0.7.25" % Test
libraryDependencies += "org.scalameta" %% "munit" % "0.7.29" % Test

coverageMinimum := 80
coverageMinimumStmtTotal := 100
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/scoverage/good-coverage/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version := "0.1"

scalaVersion := "2.13.6"

libraryDependencies += "org.scalameta" %% "munit" % "0.7.25" % Test
libraryDependencies += "org.scalameta" %% "munit" % "0.7.29" % Test

coverageMinimum := 80
coverageMinimumStmtTotal := 100
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/scoverage/preserve-set/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ scalaVersion := "2.13.6"

crossScalaVersions := Seq("2.13.6")

libraryDependencies += "org.scalameta" %% "munit" % "0.7.25" % Test
libraryDependencies += "org.scalameta" %% "munit" % "0.7.29" % Test

val checkScalaVersion = inputKey[Unit](
"Input task to compare the value of scalaVersion setting with a given input."
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/scoverage/scalajs/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ lazy val cross =
.crossType(CrossType.Full)
.settings(
scalaVersion := "2.13.6",
libraryDependencies += "org.scalameta" %% "munit" % "0.7.25" % Test
libraryDependencies += "org.scalameta" %% "munit" % "0.7.29" % Test
)

lazy val crossJS = cross.js
Expand Down