Skip to content

Commit

Permalink
updated the mockito version to 2.18.0
Browse files Browse the repository at this point in the history
added 4.1.0 notes
  • Loading branch information
etorreborre committed Apr 20, 2018
1 parent 4251865 commit 0623b12
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
9 changes: 9 additions & 0 deletions notes/4.1.0.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Upgrade version

## Upgrades

* **mockito** upgraded to Mockito `2.18.2`, this is mostly to avoid a concurrency bug introduced by Mockito (#641).
* **html** the default options for pandoc are now compatible with pandoc `2.1.3` for markdown generation

Otherwise please refer to the `4.0.4` notes for the latest changes.

5 changes: 3 additions & 2 deletions project/depends.scala
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ object depends {
def kindp(scalaVersion: String) =
"org.spire-math" % "kind-projector" % "0.8.2" cross CrossVersion.binary

lazy val mockito = Seq("org.mockito" % "mockito-core" % "2.16.0")
lazy val mockito = Seq("org.mockito" % "mockito-core" % "2.18.0")
lazy val junit = Seq("junit" % "junit" % "4.12")
lazy val hamcrest = Seq("org.hamcrest" % "hamcrest-core" % "1.3")

Expand Down Expand Up @@ -69,7 +69,8 @@ object depends {
Seq()

lazy val resolvers =
Seq(sbt.Keys.resolvers ++= Seq(Resolver.sonatypeRepo("releases")))
Seq(sbt.Keys.resolvers ++= Seq(
Resolver.sonatypeRepo("releases")))

def scalaMinorVersionAtLeast(scalaVersion: String, n: Int): Boolean =
CrossVersion.partialVersion(scalaVersion) match {
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "4.0.4"
version in ThisBuild := "4.1.0"

0 comments on commit 0623b12

Please sign in to comment.