diff --git a/README.md b/README.md index 360cef18..6ce36bab 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Bisect_ppx   [![version 1.0.0][version]][releases] [![Travis status][travis-img]][travis] [![Coverage][coveralls-img]][coveralls] +# Bisect_ppx   [![version 1.0.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. You can also @@ -14,7 +14,7 @@ generates for itself. You may also want to see [self]: https://github.com/rleonid/bisect_ppx [releases]: https://github.com/rleonid/bisect_ppx/releases -[version]: https://img.shields.io/badge/version-1.0.0-blue.svg +[version]: https://img.shields.io/badge/version-1.0.1-blue.svg [self-coverage]: http://rleonid.github.io/bisect_ppx/coverage/ [travis]: https://travis-ci.org/rleonid/bisect_ppx/branches [travis-img]: https://img.shields.io/travis/rleonid/bisect_ppx/master.svg diff --git a/doc/CHANGES b/doc/CHANGES index a4321930..50b07bb1 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -1,3 +1,14 @@ +Version 1.0.1 (2016-03-04): +--------------------------- + - Add option -ignore-missing-files to bisect-ppx-report, which allows the + reporter to silently ignore missing source files instead of failing. This is + intended for build processes that generate temporary source files, but + delete them before the reporter is run (requested Ivan Gotovchits). + - Fix bug in which bisect-ppx-report treated source code as format strings for + Buffer.add_substitute. This caused wrong behavior on source code substrings + that looked like Buffer.add_substitute patterns (reported Ivan Gotovchits). + - Various minor documentation and internal build fixes. + Version 1.0.0 (2016-02-09): --------------------------- - Redesign HTML reports. diff --git a/opam/opam b/opam/opam index 6ac97e99..9fdf6dd0 100644 --- a/opam/opam +++ b/opam/opam @@ -1,5 +1,5 @@ name: "bisect_ppx" -version: "1.0.0" +version: "1.0.1" opam-version: "1.2" maintainer: "Leonid Rozenberg " authors: [ diff --git a/src/META b/src/META index be4ec183..698abba2 100644 --- a/src/META +++ b/src/META @@ -1,23 +1,23 @@ -version="1.0.0" +version="1.0.1" description="Code coverage for OCaml" requires="bisect_ppx.runtime" ppx="./bisect_ppx" package "runtime" ( - version="1.0.0" + version="1.0.1" description="Code coverage for OCaml" archive(byte)="bisect.cma" archive(native)="bisect.cmxa" ) package "fast" ( - version="1.0.0" + version="1.0.1" description="Code coverage for OCaml (deprecated package)" requires="bisect_ppx" ) package "plugin" ( - version="1.0.0" + version="1.0.1" description="Bisect_ppx Ocamlbuild plugin" archive(byte)="bisect_ppx_plugin.cma" archive(native)="bisect_ppx_plugin.cmxa" diff --git a/src/library/version.ml b/src/library/version.ml index 9c2c0c74..d4b440ba 100644 --- a/src/library/version.ml +++ b/src/library/version.ml @@ -1 +1 @@ -let value = "1.0.0" +let value = "1.0.1"