Skip to content

Commit

Permalink
Release 3.2.9.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
cheeseng committed May 14, 2021
1 parent a326184 commit 7ec91ab
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@

**Usage**

To use it for ScalaTest 3.2.8 and EasyMock 3.2.x:
To use it for ScalaTest 3.2.9 and EasyMock 3.2.x:

SBT:

```
libraryDependencies += "org.scalatestplus" %% "easymock-3-2" % "3.2.8.0" % "test"
libraryDependencies += "org.scalatestplus" %% "easymock-3-2" % "3.2.9.0" % "test"
```

Maven:
Expand All @@ -17,7 +17,7 @@ Maven:
<dependency>
<groupId>org.scalatestplus</groupId>
<artifactId>easymock-3-2_2.13</artifactId>
<version>3.2.8.0</version>
<version>3.2.9.0</version>
<scope>test</scope>
</dependency>
```
Expand Down
14 changes: 7 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name := "easymock-3.2"

organization := "org.scalatestplus"

version := "3.2.8.0"
version := "3.2.9.0"

homepage := Some(url("https://github.com/scalatest/scalatestplus-easymock"))

Expand All @@ -28,16 +28,16 @@ developers := List(

scalaVersion := "2.13.5"

crossScalaVersions := List("2.10.7", "2.11.12", "2.12.13", "2.13.5", "3.0.0-RC3")
crossScalaVersions := List("2.10.7", "2.11.12", "2.12.13", "2.13.5", "3.0.0")

resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"

libraryDependencies ++= Seq(
"org.easymock" % "easymockclassextension" % "3.2",
"org.scalatest" %% "scalatest-core" % "3.2.8",
"org.scalatest" %% "scalatest-funsuite" % "3.2.8" % "test",
"org.scalatest" %% "scalatest-flatspec" % "3.2.8" % "test",
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.8" % "test"
"org.scalatest" %% "scalatest-core" % "3.2.9",
"org.scalatest" %% "scalatest-funsuite" % "3.2.9" % "test",
"org.scalatest" %% "scalatest-flatspec" % "3.2.9" % "test",
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.9" % "test"
)

Test / scalacOptions ++= (if (isDotty.value) Seq("-language:implicitConversions") else Nil)
Expand Down Expand Up @@ -104,7 +104,7 @@ pomExtra := (
credentials += Credentials(Path.userHome / ".ivy2" / ".credentials")

// Temporary disable publishing of doc in dotty, can't get it to build.
publishArtifact in (Compile, packageDoc) := !scalaBinaryVersion.value.startsWith("3.")
publishArtifact in (Compile, packageDoc) := !scalaBinaryVersion.value.startsWith("3")

def docTask(docDir: File, resDir: File, projectName: String): File = {
val docLibDir = docDir / "lib"
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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.4")
addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.5.5")

0 comments on commit 7ec91ab

Please sign in to comment.