From 07dd2ecabed64f4325669c2c44ce231c59937d85 Mon Sep 17 00:00:00 2001 From: Chua Chee Seng Date: Wed, 31 Mar 2021 16:20:39 +0800 Subject: [PATCH] Release 3.2.7.0. --- README.md | 6 +++--- build.sbt | 10 +++++----- project/build.properties | 2 +- project/plugins.sbt | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7eeb1ef..a3470ce 100644 --- a/README.md +++ b/README.md @@ -3,12 +3,12 @@ ScalaTest + Mockito provides integration support between ScalaTest and Mockito. **Usage** -To use it for ScalaTest 3.2.6 and Mockito 3.4.x: +To use it for ScalaTest 3.2.7 and Mockito 3.4.x: SBT: ``` -libraryDependencies += "org.scalatestplus" %% "mockito-3-4" % "3.2.6.0" % "test" +libraryDependencies += "org.scalatestplus" %% "mockito-3-4" % "3.2.7.0" % "test" ``` Maven: @@ -17,7 +17,7 @@ Maven: org.scalatestplus mockito-3-4_2.13 - 3.2.6.0 + 3.2.7.0 test ``` diff --git a/build.sbt b/build.sbt index 66f6946..a6cf88e 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ name := "mockito-3.4" organization := "org.scalatestplus" -version := "3.2.6.0" +version := "3.2.7.0" homepage := Some(url("https://github.com/scalatest/scalatestplus-mockito")) @@ -25,14 +25,14 @@ developers := List( ) ) -scalaVersion := "2.13.4" +scalaVersion := "2.13.5" -crossScalaVersions := List("2.10.7", "2.11.12", "2.12.13", "2.13.4", "3.0.0-RC1") +crossScalaVersions := List("2.10.7", "2.11.12", "2.12.13", "2.13.5", "3.0.0-RC2") libraryDependencies ++= Seq( "org.mockito" % "mockito-core" % "3.4.6", - "org.scalatest" %% "scalatest-core" % "3.2.6", - "org.scalatest" %% "scalatest-funsuite" % "3.2.6" % "test" + "org.scalatest" %% "scalatest-core" % "3.2.7", + "org.scalatest" %% "scalatest-funsuite" % "3.2.7" % "test" ) Test / scalacOptions ++= (if (isDotty.value) diff --git a/project/build.properties b/project/build.properties index 0b2e09c..dbae93b 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.4.7 +sbt.version=1.4.9 diff --git a/project/plugins.sbt b/project/plugins.sbt index cf78602..21bc0bc 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -2,4 +2,4 @@ addSbtPlugin("com.jsuereth" % "sbt-pgp" % "2.0.1") addSbtPlugin("com.typesafe.sbt" % "sbt-osgi" % "0.9.6") -addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.5.3") +addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.5.4")