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 ]
2
2
====================================================================================================
3
3
4
4
[ 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:
43
43
Contents
44
44
--------
45
45
46
+ - [ µTest 0.8.0 ![ Build Status] ( #µtest-080-build-statustravis-link-gitter-chatgitter-badgegitter-link )
47
+ - [ Contents] ( #contents )
46
48
- [ Getting Started] ( #getting-started )
47
49
- [ Defining and Running a Test Suite] ( #defining-and-running-a-test-suite )
48
50
- [ Nesting Tests] ( #nesting-tests )
@@ -60,16 +62,57 @@ Contents
60
62
- [ TestPath] ( #testpath )
61
63
- [ Local Retries] ( #local-retries )
62
64
- [ Configuring uTest] ( #configuring-utest )
65
+ - [ Per-Run Setup/Teardown, and other test-running Config] ( #per-run-setupteardown-and-other-test-running-config )
63
66
- [ Output Formatting] ( #output-formatting )
64
67
- [ Suite Retries] ( #suite-retries )
65
68
- [ Running code before and after test cases] ( #running-code-before-and-after-test-cases )
66
69
- [ Running code before and after test suites] ( #running-code-before-and-after-test-suites )
67
70
- [ Test Wrapping] ( #test-wrapping )
68
- - [ Per-Run Setup/Teardown, and other test-running Config] ( #per-run-setupteardown-and-other-test-running-config )
69
71
- [ Scala.js and Scala-Native] ( #scalajs-and-scala-native )
70
72
- [ Running uTest Standalone] ( #running-utest-standalone )
71
73
- [ Why uTest] ( #why-utest )
72
74
- [ 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 )
73
116
74
117
Getting Started
75
118
===============
@@ -80,15 +123,15 @@ can immediately begin defining and running tests programmatically.
80
123
81
124
82
125
``` scala
83
- libraryDependencies += " com.lihaoyi" %% " utest" % " 0.7.10 " % " test"
126
+ libraryDependencies += " com.lihaoyi" %% " utest" % " 0.8.0 " % " test"
84
127
85
128
testFrameworks += new TestFramework (" utest.runner.Framework" )
86
129
```
87
130
88
131
To use it with Scala.js or Scala-Native:
89
132
90
133
``` scala
91
- libraryDependencies += " com.lihaoyi" %%% " utest" % " 0.7.10 " % " test"
134
+ libraryDependencies += " com.lihaoyi" %%% " utest" % " 0.8.0 " % " test"
92
135
93
136
testFrameworks += new TestFramework (" utest.runner.Framework" )
94
137
```
@@ -1329,6 +1372,18 @@ libraries are currently at.
1329
1372
Changelog
1330
1373
=========
1331
1374
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
+
1332
1387
0.7.10
1333
1388
-----
1334
1389
@@ -1399,7 +1454,7 @@ Changelog
1399
1454
- Upgrade Scala Native 0.3.6 to 0.3.7
1400
1455
- Replace Scala.JS' deprecated ` TestUtils ` with portable-scala-reflect
1401
1456
1402
- 0.6.6
1457
+ 0.6.5
1403
1458
-----
1404
1459
- Bugfix where sometimes all tests would pass but report as failed (thanks @eatkins )
1405
1460
- By default, don't cut-off and wrap output
0 commit comments