Skip to content

Commit e33e35f

Browse files
committed
Updated sbt, scala, scalatest version, for release 3.2.1.0.
1 parent a431d10 commit e33e35f

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
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.0 and Selenium 3.141.x:
6+
To use it for ScalaTest 3.2.1 and Selenium 3.141.x:
77

88
SBT:
99

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

1414
Maven:
@@ -17,7 +17,7 @@ Maven:
1717
<dependency>
1818
<groupId>org.scalatestplus</groupId>
1919
<artifactId>selenium-3-141</artifactId>
20-
<version>3.2.0.0</version>
20+
<version>3.2.1.0</version>
2121
<scope>test</scope>
2222
</dependency>
2323
```

build.sbt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name := "selenium-3.141"
22

33
organization := "org.scalatestplus"
44

5-
version := "3.2.0.0"
5+
version := "3.2.1.0"
66

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

@@ -23,17 +23,17 @@ developers := List(
2323
)
2424
)
2525

26-
scalaVersion := "2.13.2"
27-
crossScalaVersions := List("2.10.7", "2.11.12", "2.12.11", "2.13.2", "0.24.0")
26+
scalaVersion := "2.13.3"
27+
crossScalaVersions := List("2.10.7", "2.11.12", "2.12.12", "2.13.3", "0.26.0-RC1")
2828

2929
libraryDependencies ++= Seq(
30-
"org.scalatest" %% "scalatest-core" % "3.2.0",
30+
"org.scalatest" %% "scalatest-core" % "3.2.1",
3131
"org.seleniumhq.selenium" % "selenium-java" % "3.141.59",
3232
"org.seleniumhq.selenium" % "htmlunit-driver" % "2.39.0",
3333
"org.eclipse.jetty" % "jetty-server" % "9.4.12.v20180830" % Test,
3434
"org.eclipse.jetty" % "jetty-webapp" % "9.4.12.v20180830" % Test,
35-
"org.scalatest" %% "scalatest-funspec" % "3.2.0" % Test,
36-
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.0" % Test
35+
"org.scalatest" %% "scalatest-funspec" % "3.2.1" % Test,
36+
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.1" % Test
3737
)
3838

3939
Test / scalacOptions ++= (if (isDotty.value) Seq("-language:implicitConversions") else Nil)

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.3.12
1+
sbt.version=1.3.13

0 commit comments

Comments
 (0)