Skip to content

Commit fb82212

Browse files
committed
Release 3.2.9.0.
1 parent b765860 commit fb82212

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 @@ ScalaTest + Selenium provides integration support between ScalaTest and Selenium
33

44
**Usage**
55

6-
To use it for ScalaTest 3.2.8 and Selenium 3.141.x:
6+
To use it for ScalaTest 3.2.9 and Selenium 3.141.x:
77

88
SBT:
99

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

1414
Maven:
@@ -17,7 +17,7 @@ Maven:
1717
<dependency>
1818
<groupId>org.scalatestplus</groupId>
1919
<artifactId>selenium-3-141_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 := "selenium-3.141"
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-selenium"))
1111

@@ -27,16 +27,16 @@ developers := List(
2727
)
2828

2929
scalaVersion := "2.13.5"
30-
crossScalaVersions := List("2.10.7", "2.11.12", "2.12.13", "2.13.5", "3.0.0-RC3")
30+
crossScalaVersions := List("2.10.7", "2.11.12", "2.12.13", "2.13.5", "3.0.0")
3131

3232
libraryDependencies ++= Seq(
33-
"org.scalatest" %% "scalatest-core" % "3.2.8",
33+
"org.scalatest" %% "scalatest-core" % "3.2.9",
3434
"org.seleniumhq.selenium" % "selenium-java" % "3.141.59",
3535
"org.seleniumhq.selenium" % "htmlunit-driver" % "2.39.0",
3636
"org.eclipse.jetty" % "jetty-server" % "9.4.12.v20180830" % Test,
3737
"org.eclipse.jetty" % "jetty-webapp" % "9.4.12.v20180830" % Test,
38-
"org.scalatest" %% "scalatest-funspec" % "3.2.8" % Test,
39-
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.8" % Test
38+
"org.scalatest" %% "scalatest-funspec" % "3.2.9" % Test,
39+
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.9" % Test
4040
)
4141

4242
Test / scalacOptions ++= (if (isDotty.value) Seq("-language:implicitConversions") else Nil)
@@ -109,7 +109,7 @@ pomExtra := (
109109
credentials += Credentials(Path.userHome / ".ivy2" / ".credentials")
110110

111111
scalacOptions ++= {
112-
(if (scalaBinaryVersion.value.startsWith("3."))
112+
(if (scalaBinaryVersion.value.startsWith("3"))
113113
Seq(
114114
"-deprecation",
115115
"-encoding", "utf-8",
@@ -129,7 +129,7 @@ scalacOptions ++= {
129129
}
130130

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

134134
def docTask(docDir: File, resDir: File, projectName: String): File = {
135135
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)