Skip to content

Commit 0b18655

Browse files
authored
Version 0.8.0 (#261)
Fix changelogs and links in Table of Contents in README.md
1 parent 75528c7 commit 0b18655

File tree

1 file changed

+60
-5
lines changed

1 file changed

+60
-5
lines changed

readme.md

+60-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
µTest 0.7.10 [![Build Status][travis-badge]][travis-link] [![Gitter Chat][gitter-badge]][gitter-link]
1+
µTest 0.8.0 [![Build Status][travis-badge]][travis-link] [![Gitter Chat][gitter-badge]][gitter-link]
22
====================================================================================================
33

44
[travis-badge]: https://travis-ci.org/lihaoyi/utest.svg
@@ -43,6 +43,8 @@ If you use uTest and like it, please support it by donating to our Patreon:
4343
Contents
4444
--------
4545

46+
- [µTest 0.8.0 ![Build Status](#µtest-080-build-statustravis-link-gitter-chatgitter-badgegitter-link)
47+
- [Contents](#contents)
4648
- [Getting Started](#getting-started)
4749
- [Defining and Running a Test Suite](#defining-and-running-a-test-suite)
4850
- [Nesting Tests](#nesting-tests)
@@ -60,16 +62,57 @@ Contents
6062
- [TestPath](#testpath)
6163
- [Local Retries](#local-retries)
6264
- [Configuring uTest](#configuring-utest)
65+
- [Per-Run Setup/Teardown, and other test-running Config](#per-run-setupteardown-and-other-test-running-config)
6366
- [Output Formatting](#output-formatting)
6467
- [Suite Retries](#suite-retries)
6568
- [Running code before and after test cases](#running-code-before-and-after-test-cases)
6669
- [Running code before and after test suites](#running-code-before-and-after-test-suites)
6770
- [Test Wrapping](#test-wrapping)
68-
- [Per-Run Setup/Teardown, and other test-running Config](#per-run-setupteardown-and-other-test-running-config)
6971
- [Scala.js and Scala-Native](#scalajs-and-scala-native)
7072
- [Running uTest Standalone](#running-utest-standalone)
7173
- [Why uTest](#why-utest)
7274
- [Changelog](#changelog)
75+
- [0.8.0](#080)
76+
- [0.7.11](#0711)
77+
- [0.7.10](#0710)
78+
- [0.7.9](#079)
79+
- [0.7.8](#078)
80+
- [0.7.7](#077)
81+
- [0.7.6](#076)
82+
- [0.7.4](#074)
83+
- [0.7.3](#073)
84+
- [0.7.2](#072)
85+
- [0.7.1](#071)
86+
- [0.6.9](#069)
87+
- [0.6.7](#067)
88+
- [0.6.6](#066)
89+
- [0.6.5](#065)
90+
- [0.6.4](#064)
91+
- [0.6.3](#063)
92+
- [0.6.2](#062)
93+
- [0.6.0](#060)
94+
- [0.5.4](#054)
95+
- [0.5.3](#053)
96+
- [0.4.8](#048)
97+
- [0.4.7](#047)
98+
- [0.4.6](#046)
99+
- [0.4.5](#045)
100+
- [0.4.4](#044)
101+
- [0.4.3](#043)
102+
- [0.4.2](#042)
103+
- [0.4.1](#041)
104+
- [0.4.0](#040)
105+
- [0.3.1](#031)
106+
- [0.3.0](#030)
107+
- [0.2.4](#024)
108+
- [0.2.3](#023)
109+
- [0.2.2](#022)
110+
- [0.2.1](#021)
111+
- [0.2.0](#020)
112+
- [0.1.9](#019)
113+
- [0.1.8](#018)
114+
- [0.1.7](#017)
115+
- [0.1.6](#016)
73116

74117
Getting Started
75118
===============
@@ -80,15 +123,15 @@ can immediately begin defining and running tests programmatically.
80123

81124

82125
```scala
83-
libraryDependencies += "com.lihaoyi" %% "utest" % "0.7.10" % "test"
126+
libraryDependencies += "com.lihaoyi" %% "utest" % "0.8.0" % "test"
84127

85128
testFrameworks += new TestFramework("utest.runner.Framework")
86129
```
87130

88131
To use it with Scala.js or Scala-Native:
89132

90133
```scala
91-
libraryDependencies += "com.lihaoyi" %%% "utest" % "0.7.10" % "test"
134+
libraryDependencies += "com.lihaoyi" %%% "utest" % "0.8.0" % "test"
92135

93136
testFrameworks += new TestFramework("utest.runner.Framework")
94137
```
@@ -1329,6 +1372,18 @@ libraries are currently at.
13291372
Changelog
13301373
=========
13311374

1375+
0.8.0
1376+
-----
1377+
1378+
- Drop support for Scala.js 0.6
1379+
- Bump Scala.js to 1.10 (minimum version supported is 1.8)
1380+
- Bump Scala versions to latest (2.12.16, 2.13.8, 3.1.3)
1381+
1382+
0.7.11
1383+
-----
1384+
1385+
- Add support for Scala 3 on Scala Native
1386+
13321387
0.7.10
13331388
-----
13341389

@@ -1399,7 +1454,7 @@ Changelog
13991454
- Upgrade Scala Native 0.3.6 to 0.3.7
14001455
- Replace Scala.JS' deprecated `TestUtils` with portable-scala-reflect
14011456

1402-
0.6.6
1457+
0.6.5
14031458
-----
14041459
- Bugfix where sometimes all tests would pass but report as failed (thanks @eatkins)
14051460
- By default, don't cut-off and wrap output

0 commit comments

Comments
 (0)