Skip to content

Commit

Permalink
Release 2.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Avasil committed Apr 5, 2020
1 parent aef7a63 commit 7cb2a32
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## Version 2.8.0 (Apr 5, 2020)

- Update ScalaJS to 0.6.32 and 1.0.0
- Changes the signature of `intercept` to return the Throwable

## Version 2.7.0 (Sep 9, 2019)

- Update sbt to 1.3.0
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Minitest

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

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

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

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

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

Given that updates for ScalaCheck have been problematic, the ecosystem
Expand Down
2 changes: 1 addition & 1 deletion publish.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ enablePlugins(GitVersioning)
/* The BaseVersion setting represents the in-development (upcoming) version,
* as an alternative to SNAPSHOTS.
*/
git.baseVersion := "2.7.0"
git.baseVersion := "2.8.0"

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

0 comments on commit 7cb2a32

Please sign in to comment.