Skip to content

Commit 7ec91ab

Browse files
committed
Release 3.2.9.0.
1 parent a326184 commit 7ec91ab

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33

44
**Usage**
55

6-
To use it for ScalaTest 3.2.8 and EasyMock 3.2.x:
6+
To use it for ScalaTest 3.2.9 and EasyMock 3.2.x:
77

88
SBT:
99

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

1414
Maven:
@@ -17,7 +17,7 @@ Maven:
1717
<dependency>
1818
<groupId>org.scalatestplus</groupId>
1919
<artifactId>easymock-3-2_2.13</artifactId>
20-
<version>3.2.8.0</version>
20+
<version>3.2.9.0</version>
2121
<scope>test</scope>
2222
</dependency>
2323
```

build.sbt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name := "easymock-3.2"
55

66
organization := "org.scalatestplus"
77

8-
version := "3.2.8.0"
8+
version := "3.2.9.0"
99

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

@@ -28,16 +28,16 @@ developers := List(
2828

2929
scalaVersion := "2.13.5"
3030

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

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

3535
libraryDependencies ++= Seq(
3636
"org.easymock" % "easymockclassextension" % "3.2",
37-
"org.scalatest" %% "scalatest-core" % "3.2.8",
38-
"org.scalatest" %% "scalatest-funsuite" % "3.2.8" % "test",
39-
"org.scalatest" %% "scalatest-flatspec" % "3.2.8" % "test",
40-
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.8" % "test"
37+
"org.scalatest" %% "scalatest-core" % "3.2.9",
38+
"org.scalatest" %% "scalatest-funsuite" % "3.2.9" % "test",
39+
"org.scalatest" %% "scalatest-flatspec" % "3.2.9" % "test",
40+
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.9" % "test"
4141
)
4242

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

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

109109
def docTask(docDir: File, resDir: File, projectName: String): File = {
110110
val docLibDir = docDir / "lib"

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ addSbtPlugin("com.jsuereth" % "sbt-pgp" % "2.0.1")
22

33
addSbtPlugin("com.typesafe.sbt" % "sbt-osgi" % "0.9.6")
44

5-
addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.5.4")
5+
addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.5.5")

0 commit comments

Comments
 (0)