diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bba1ac1..e49c49dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ Notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/). This project mirrors the Elm version. So version 0.19.1-revisionX of this project will be compatible with Elm 0.19.1. +## 0.19.1-revision12 - 2023-02-16 + +### Fixed + +- `elm-test --report junit` now works with [elm-program-test](https://github.com/avh4/elm-program-test). The `junit` report is XML. `elm-program-test` uses some characters that are not allowed in XML. This version replaces such disallowed characters with an Elm-style escape sequence, instead of crashing like it did before. Thanks to [Christoph Hermann](https://github.com/stoeffel) for reporting and to [Ilias Van Peer](https://github.com/zwilias) for fixing! + ## 0.19.1-revision11 - 2023-01-02 ### Fixed diff --git a/package-lock.json b/package-lock.json index 2d6c0851..a555c9fe 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "elm-test", - "version": "0.19.1-revision11", + "version": "0.19.1-revision12", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 1836fbd2..bdabf1b3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "elm-test", - "version": "0.19.1-revision11", + "version": "0.19.1-revision12", "description": "Run elm-test suites.", "main": "elm-test.js", "engines": {