Skip to content

Commit

Permalink
scalatestplus-play 6.0.1 (was 6.0.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward authored and mkurz committed Jan 15, 2024
1 parent d94e1a8 commit afe0079
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion play-scala-anorm-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ lazy val root = (project in file("."))
evolutions,
"com.h2database" % "h2" % "2.2.224",
"org.playframework.anorm" %% "anorm" % "2.7.0",
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.0" % Test,
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.1" % Test,
),
scalacOptions ++= List("-feature", "-Werror"),
javacOptions ++= List("-Xlint:unchecked", "-Xlint:deprecation", "-Werror"),
Expand Down
2 changes: 1 addition & 1 deletion play-scala-chatroom-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ lazy val root = (project in file("."))
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % Test,
"com.typesafe.akka" %% "akka-stream-testkit" % akkaVersion % Test,
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.0" % Test
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.1" % Test
),
(Test / javaOptions) += "-Dtestserver.port=19001",
scalacOptions ++= Seq(
Expand Down
2 changes: 1 addition & 1 deletion play-scala-compile-di-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ lazy val root = (project in file("."))
version := "1.0-SNAPSHOT",
crossScalaVersions := Seq("2.13.12", "3.3.1"),
scalaVersion := crossScalaVersions.value.head,
libraryDependencies += "org.scalatestplus.play" %% "scalatestplus-play" % "6.0.0",
libraryDependencies += "org.scalatestplus.play" %% "scalatestplus-play" % "6.0.1",
scalacOptions ++= List(
//"-encoding", "utf8", // These three get set by Play automatically
//"-deprecation",
Expand Down
2 changes: 1 addition & 1 deletion play-scala-fileupload-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ lazy val root = (project in file("."))
libraryDependencies ++= Seq(
ws,
guice,
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.0" % Test
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.1" % Test
),
scalacOptions ++= Seq(
"-feature",
Expand Down
2 changes: 1 addition & 1 deletion play-scala-forms-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ lazy val root = (project in file("."))
scalaVersion := crossScalaVersions.value.head,
libraryDependencies ++= Seq(
guice,
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.0" % Test
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.1" % Test
),
scalacOptions ++= Seq(
"-feature",
Expand Down
2 changes: 1 addition & 1 deletion play-scala-grpc-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ val TestDeps = Seq(
"com.typesafe.play" %% "play-grpc-specs2" % BuildInfo.playGrpcVersion % Test,
"com.typesafe.play" %% "play-test" % playVersion % Test,
"com.typesafe.play" %% "play-specs2" % playVersion % Test,
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.0" % Test,
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.1" % Test,
)

scalaVersion := "2.13.12"
Expand Down
2 changes: 1 addition & 1 deletion play-scala-hello-world-tutorial/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ lazy val root = (project in file("."))
scalaVersion := crossScalaVersions.value.head,
libraryDependencies ++= Seq(
guice,
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.0" % Test
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.1" % Test
),
scalacOptions ++= Seq(
"-feature",
Expand Down
2 changes: 1 addition & 1 deletion play-scala-isolated-slick-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ lazy val root = (project in file("."))
"com.h2database" % "h2" % "2.2.224",
ws % Test,
"org.flywaydb" % "flyway-core" % FlywayVersion % Test,
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.0" % Test
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.1" % Test
),
(Test / fork) := true
)
Expand Down
2 changes: 1 addition & 1 deletion play-scala-log4j2-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ lazy val root = (project in file("."))
"org.apache.logging.log4j" % "log4j-slf4j-impl" % log4jVersion,
"org.apache.logging.log4j" % "log4j-api" % log4jVersion,
"org.apache.logging.log4j" % "log4j-core" % log4jVersion,
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.0" % Test
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.1" % Test
),
scalacOptions ++= Seq(
"-feature",
Expand Down
2 changes: 1 addition & 1 deletion play-scala-macwire-di-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ lazy val root = (project in file("."))
scalaVersion := crossScalaVersions.value.head,
libraryDependencies ++= Seq(
"com.softwaremill.macwire" %% "macros" % "2.5.9" % "provided",
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.0" % Test
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.1" % Test
),
scalacOptions ++= Seq(
"-feature",
Expand Down
2 changes: 1 addition & 1 deletion play-scala-rest-api-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ lazy val root = (project in file("."))
"net.logstash.logback" % "logstash-logback-encoder" % "7.3",
"io.lemonlabs" %% "scala-uri" % "4.0.3",
"net.codingwell" %% "scala-guice" % "6.0.0",
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.0" % Test
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.1" % Test
),
scalacOptions ++= Seq(
"-feature",
Expand Down
2 changes: 1 addition & 1 deletion play-scala-secure-session-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ lazy val root = (project in file("."))
"org.abstractj.kalium" % "kalium" % "0.8.0",
("com.typesafe.akka" %% "akka-distributed-data" % akkaVersion).cross(CrossVersion.for3Use2_13),
("com.typesafe.akka" %% "akka-cluster-typed" % akkaVersion).cross(CrossVersion.for3Use2_13),
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.0" % Test
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.1" % Test
),
scalacOptions ++= Seq(
"-feature",
Expand Down
2 changes: 1 addition & 1 deletion play-scala-starter-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ lazy val root = (project in file("."))
libraryDependencies ++= Seq(
guice,
"com.h2database" % "h2" % "2.2.224",
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.0" % Test,
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.1" % Test,
),
scalacOptions ++= Seq(
"-feature",
Expand Down
2 changes: 1 addition & 1 deletion play-scala-streaming-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ lazy val root = (project in file("."))
libraryDependencies ++= Seq(
guice,
ws % Test,
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.0" % Test
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.1" % Test
),
scalacOptions ++= Seq(
"-feature",
Expand Down
2 changes: 1 addition & 1 deletion play-scala-tls-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ lazy val root = (project in file("."))
libraryDependencies ++= Seq(
ws,
guice,
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.0" % Test,
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.1" % Test,
)
)
.aggregate(one, two)
Expand Down
2 changes: 1 addition & 1 deletion play-scala-websocket-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ lazy val root = (project in file("."))
ws,
"org.webjars" % "flot" % "0.8.3-1",
"org.webjars" % "bootstrap" % "3.3.7-1",
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.0" % Test,
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.1" % Test,
"org.awaitility" % "awaitility" % "4.2.0" % Test,
),
(Test / javaOptions) += "-Dtestserver.port=19001",
Expand Down

0 comments on commit afe0079

Please sign in to comment.