Releases: daniel-shuy/scripted-scalatest-sbt-plugin
Releases · daniel-shuy/scripted-scalatest-sbt-plugin
2.0.0
1.1.0
Improvements:
- Scripted test will now fail if any ScalaTest fails (#5)
- Dependency on ScalaTest reduced to lowest minor/patch version (3.0.0). Please override the
scalatest
dependency version in your scripted test's project build (see https://github.com/daniel-shuy/scripted-scalatest-sbt-plugin#user-content-step-4-include-sbt-scripted-scalatest-in-your-build)
1.0.0
This release fixes Issue #2. ScriptedScalaTestSuiteMixin
now extends BeforeAndAfterEach instead of BeforeAndAfter.
This is breaking change, if your ScalaTest Suite/Spec implements BeforeAndAfter
's after
method, without explicitly mixing in BeforeAndAfter
. To fix it, simply mixin BeforeAndAfter
.
0.2.0
This release mainly adds support for SBT 1.x. As of 1.0.0, SBT has changed their versioning to use semantic versioning, so future 1.x versions of SBT will remain binary compatible with SBT 1.0 (unlike how SBT 0.13 wasn't binary compatible with 0.12).
If you are still using SBT 0.13, then you may update to this version without performing any changes.
The following changes need to be performed before updating to SBT 1.x:
- Remove
ScriptedPlugin.scriptedSettings
frombuild.sbt
- Modify
sbt-test/<test-group>/<test-name>/test
script file content from> scripted-scalatest
to> scriptedScalatest
0.1.0
Initial Release