From 693c3e335e91fbffa19520f34501635e1d21cd3c Mon Sep 17 00:00:00 2001 From: Anton Bachin Date: Mon, 25 Mar 2019 01:27:56 +0100 Subject: [PATCH] Bump to 1.4.1 and write changelog --- README.md | 4 ++-- doc/CHANGES | 13 +++++++++++++ src/runtime/version.ml | 2 +- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b23621e8..1c0a6075 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Bisect_ppx   [![version 1.4.0][version]][releases] [![Travis status][travis-img]][travis] [![Coverage][coveralls-img]][coveralls] +# Bisect_ppx   [![version 1.4.1][version]][releases] [![Travis status][travis-img]][travis] [![Coverage][coveralls-img]][coveralls] [Bisect_ppx][self] is a code coverage tool for OCaml. It helps you test thoroughly by showing which parts of your code are **not** tested. @@ -12,7 +12,7 @@ generates for itself. [self]: https://github.com/aantron/bisect_ppx [releases]: https://github.com/aantron/bisect_ppx/releases -[version]: https://img.shields.io/badge/version-1.4.0-blue.svg +[version]: https://img.shields.io/badge/version-1.4.1-blue.svg [self-coverage]: http://aantron.github.io/bisect_ppx/coverage/ [travis]: https://travis-ci.org/aantron/bisect_ppx/branches [travis-img]: https://img.shields.io/travis/aantron/bisect_ppx/master.svg diff --git a/doc/CHANGES b/doc/CHANGES index 600cd7d2..37991cdc 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -1,3 +1,16 @@ +Version 1.4.1 (2018-03-25): +--------------------------- + + Additions + + - PPX -no-comment-parsing option, to work around Bisect_ppx trying to parse + (*BISECT-IGNORE*) comments (#187, reported Ben Anderson). + + Bugs fixed + + - Bisect_ppx should run after other PPXs (#186, reported Brian Caine). + - Round displayed coverage percentages down (#172, reported Iago Abal). + Version 1.4.0 (2018-11-28): --------------------------- Additions diff --git a/src/runtime/version.ml b/src/runtime/version.ml index 0592e85a..77d04456 100644 --- a/src/runtime/version.ml +++ b/src/runtime/version.ml @@ -4,4 +4,4 @@ -let value = "1.4.0" +let value = "1.4.1"