File tree 2 files changed +13
-1
lines changed
2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -91,6 +91,18 @@ on pkg.go.dev for more information:
91
91
92
92
## Changelog
93
93
94
+ ### v2.1.0
95
+
96
+ - Fix #147 : Make timestamps in generated report more accurate.
97
+ - Fix #140 : Escape illegal XML characters in junit output.
98
+ - Fix #145 : Handle build errors in test packages with the ` _test ` suffix.
99
+ - Fix #145 : Don't ignore build errors that did not belong to a package.
100
+ - Fix #134 : Json test output was not parsed correctly when using the ` -race ` flag in ` go test ` .
101
+ - Add support for ` === NAME ` lines introduced in Go1.20
102
+ - junit: Add File attribute to ` testsuite ` .
103
+ - junit: Allow multiple properties with the same name.
104
+ - junit: Add the ` Testsuites.WriteXML ` convenience method.
105
+
94
106
### v2.0.0
95
107
96
108
- Support for parsing ` go test -json ` output.
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import (
16
16
17
17
// Current release information printed by the -version flag.
18
18
var (
19
- Version = "v2.0 .0-dev"
19
+ Version = "v2.1 .0-dev"
20
20
Revision = "HEAD"
21
21
BuildTime string
22
22
)
You can’t perform that action at this time.
0 commit comments