Skip to content

Commit 7cb2a32

Browse files
committed
Release 2.8.0
1 parent aef7a63 commit 7cb2a32

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Version 2.8.0 (Apr 5, 2020)
2+
3+
- Update ScalaJS to 0.6.32 and 1.0.0
4+
- Changes the signature of `intercept` to return the Throwable
5+
16
## Version 2.7.0 (Sep 9, 2019)
27

38
- Update sbt to 1.3.0

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Minitest
22

33
A mini testing framework cross-compiled for Scala 2.11, 2.12,
4-
2.13, [Scala.js 0.6.x](http://www.scala-js.org/) and
4+
2.13, [Scala.js 0.6.x & 1.0.x](http://www.scala-js.org/) and
55
[Scala Native 0.3.x](https://www.scala-native.org/).
66

77
[![CircleCI](https://circleci.com/gh/monix/minitest.svg?style=svg)](https://circleci.com/gh/monix/minitest)
@@ -12,7 +12,7 @@ For `build.sbt` (use the `%%%` operator for Scala.js):
1212

1313
```scala
1414
// use the %%% operator for Scala.js
15-
libraryDependencies += "io.monix" %% "minitest" % "2.7.0" % "test"
15+
libraryDependencies += "io.monix" %% "minitest" % "2.8.0" % "test"
1616

1717
testFrameworks += new TestFramework("minitest.runner.Framework")
1818
```
@@ -23,7 +23,7 @@ this being version `1.14.0`:
2323

2424
```scala
2525
// use the %%% operator for Scala.js
26-
libraryDependencies += "io.monix" %% "minitest-laws" % "2.7.0" % "test"
26+
libraryDependencies += "io.monix" %% "minitest-laws" % "2.8.0" % "test"
2727
```
2828

2929
Given that updates for ScalaCheck have been problematic, the ecosystem

publish.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ enablePlugins(GitVersioning)
6969
/* The BaseVersion setting represents the in-development (upcoming) version,
7070
* as an alternative to SNAPSHOTS.
7171
*/
72-
git.baseVersion := "2.7.0"
72+
git.baseVersion := "2.8.0"
7373

7474
val ReleaseTag = """^v(\d+\.\d+\.\d+(?:[-.]\w+)?)$""".r
7575
git.gitTagToVersionNumber := {

0 commit comments

Comments
 (0)