diff --git a/CHANGELOG.md b/CHANGELOG.md index c64173cc..15991102 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ ## Changelog +### [:link: 2.1.1](https://github.com/KarelCemus/play-redis/tree/2.1.1) + +Scope of the Mockito dependency is set to Test, was Compile [#168](https://github.com/KarelCemus/play-redis/issues/168). + ### [:link: 2.1.0](https://github.com/KarelCemus/play-redis/tree/2.1.0) Published snapshots no longer depends on scoverage runtime [#143](https://github.com/KarelCemus/play-redis/issues/143). diff --git a/build.sbt b/build.sbt index 37a7ffa5..7651797c 100644 --- a/build.sbt +++ b/build.sbt @@ -19,7 +19,7 @@ val playVersion = "2.6.13" val connectorVersion = "1.8.3" -val specs2Version = "4.0.3" +val specs2Version = "4.1.0" libraryDependencies ++= Seq( // play framework cache API @@ -31,7 +31,7 @@ libraryDependencies ++= Seq( // test module for play framework "com.typesafe.play" %% "play-specs2" % playVersion % Test, // mockito framework - "org.mockito" % "mockito-core" % "2.18.0" + "org.mockito" % "mockito-core" % "2.18.3" % Test ) resolvers ++= Seq(