From 14d61e6e75e3f3c74551d757ad936e8e88014464 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Thu, 19 Oct 2023 00:26:39 +0100 Subject: [PATCH] Release v2.1.0 --- README.md | 12 ++++++++++++ main.go | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b40c1876..c70b6712 100644 --- a/README.md +++ b/README.md @@ -91,6 +91,18 @@ on pkg.go.dev for more information: ## Changelog +### v2.1.0 + +- Fix #147: Make timestamps in generated report more accurate. +- Fix #140: Escape illegal XML characters in junit output. +- Fix #145: Handle build errors in test packages with the `_test` suffix. +- Fix #145: Don't ignore build errors that did not belong to a package. +- Fix #134: Json test output was not parsed correctly when using the `-race` flag in `go test`. +- Add support for `=== NAME` lines introduced in Go1.20 +- junit: Add File attribute to `testsuite`. +- junit: Allow multiple properties with the same name. +- junit: Add the `Testsuites.WriteXML` convenience method. + ### v2.0.0 - Support for parsing `go test -json` output. diff --git a/main.go b/main.go index e102a591..947d9498 100644 --- a/main.go +++ b/main.go @@ -16,7 +16,7 @@ import ( // Current release information printed by the -version flag. var ( - Version = "v2.0.0-dev" + Version = "v2.1.0-dev" Revision = "HEAD" BuildTime string )