Skip to content

Commit

Permalink
Bump version to 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aantron committed Mar 4, 2016
1 parent 19babfd commit 68a8f02
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
11 changes: 11 additions & 0 deletions doc/CHANGES
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion opam/opam
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: "bisect_ppx"
version: "1.0.0"
version: "1.0.1"
opam-version: "1.2"
maintainer: "Leonid Rozenberg <[email protected]>"
authors: [
Expand Down
8 changes: 4 additions & 4 deletions src/META
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/library/version.ml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
let value = "1.0.0"
let value = "1.0.1"

0 comments on commit 68a8f02

Please sign in to comment.