Skip to content

Commit 14d61e6

Browse files
committed
Release v2.1.0
1 parent a24b123 commit 14d61e6

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,18 @@ on pkg.go.dev for more information:
9191

9292
## Changelog
9393

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+
94106
### v2.0.0
95107

96108
- Support for parsing `go test -json` output.

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616

1717
// Current release information printed by the -version flag.
1818
var (
19-
Version = "v2.0.0-dev"
19+
Version = "v2.1.0-dev"
2020
Revision = "HEAD"
2121
BuildTime string
2222
)

0 commit comments

Comments
 (0)