Skip to content

Commit a00c124

Browse files
committed
Update README for version 2.x.x
1 parent 437d400 commit a00c124

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99

1010
| Plugin Version | SBT Version | ScalaTest Version |
1111
| -------------- | ------------- | ----------------- |
12-
| 1.x.x | 0.13.x, 1.x.x | 3.x.x |
12+
| 1.x.x | 0.13.x, 1.x.x | 3.0.x |
13+
| 2.x.x | 0.13.x, 1.x.x | 3.1.x+ |
1314

1415
A SBT plugin to use [ScalaTest](http://www.scalatest.org/) with scripted-plugin to test your SBT plugins
1516

@@ -147,15 +148,15 @@ Using SBT's Example in <http://www.scala-sbt.org/0.13/docs/Testing-sbt-plugins.h
147148
```scala
148149
import com.github.daniel.shuy.sbt.scripted.scalatest.ScriptedScalaTestSuiteMixin
149150
import org.scalatest.Assertions._
150-
import org.scalatest.WordSpec
151+
import org.scalatest.wordspec.AnyWordSpec
151152

152153
lazy val root = (project in file("."))
153154
.settings(
154155
version := "0.1",
155156
scalaVersion := "2.10.6",
156157
assemblyJarName in assembly := "foo.jar",
157158

158-
scriptedScalaTestSpec := Some(new WordSpec with ScriptedScalaTestSuiteMixin {
159+
scriptedScalaTestSpec := Some(new AnyWordSpec with ScriptedScalaTestSuiteMixin {
159160
override val sbtState: State = state.value
160161

161162
"assembly" should {

0 commit comments

Comments
 (0)