diff --git a/README.md b/README.md index 917c12f..141f261 100644 --- a/README.md +++ b/README.md @@ -3,12 +3,12 @@ ScalaTest + JMock provides integration support between ScalaTest and JMock. **Usage** -To use it for ScalaTest 3.2.15 and JMock 2.12.x: +To use it for ScalaTest 3.2.16 and JMock 2.12.x: SBT: ``` -libraryDependencies += "org.scalatestplus" %% "jmock-2-12" % "3.2.15.0" % "test" +libraryDependencies += "org.scalatestplus" %% "jmock-2-12" % "3.2.16.0" % "test" ``` Maven: @@ -17,7 +17,7 @@ Maven: org.scalatestplus jmock-2-12_2.13 - 3.2.15.0 + 3.2.16.0 test ``` diff --git a/build.sbt b/build.sbt index 733def5..fdea67f 100644 --- a/build.sbt +++ b/build.sbt @@ -5,7 +5,7 @@ name := "jmock-2.12" organization := "org.scalatestplus" -version := "3.2.15.0" +version := "3.2.16.0" homepage := Some(url("https://github.com/scalatest/scalatestplus-jmock")) @@ -32,11 +32,11 @@ crossScalaVersions := List("2.10.7", "2.11.12", "2.12.17", "2.13.10", "3.1.3") libraryDependencies ++= Seq( "org.jmock" % "jmock-legacy" % "2.12.0", - "org.scalatest" %% "scalatest-core" % "3.2.15", - "org.scalatest" %% "scalatest-flatspec" % "3.2.15" % "test", - "org.scalatest" %% "scalatest-funsuite" % "3.2.15" % "test", - "org.scalatest" %% "scalatest-funspec" % "3.2.15" % "test", - "org.scalatest" %% "scalatest-shouldmatchers" % "3.2.15" % "test" + "org.scalatest" %% "scalatest-core" % "3.2.16", + "org.scalatest" %% "scalatest-flatspec" % "3.2.16" % "test", + "org.scalatest" %% "scalatest-funsuite" % "3.2.16" % "test", + "org.scalatest" %% "scalatest-funspec" % "3.2.16" % "test", + "org.scalatest" %% "scalatest-shouldmatchers" % "3.2.16" % "test" ) enablePlugins(SbtOsgi)