Skip to content

Commit bef5ea0

Browse files
author
Travis CI User
committed
Merge tag '2.0.0' into develop
Release 2.0.0
2 parents 437d400 + 1248cbc commit bef5ea0

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
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 {

version.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "1.1.2-SNAPSHOT"
1+
version in ThisBuild := "2.0.1-SNAPSHOT"

0 commit comments

Comments
 (0)