Skip to content

Commit

Permalink
Bump version to 1.3.1 and write changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
aantron committed Oct 5, 2017
1 parent 281f3a5 commit 42b8fe3
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 5 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.3.0][version]][releases] [![Travis status][travis-img]][travis] [![Coverage][coveralls-img]][coveralls]
# Bisect_ppx   [![version 1.3.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/aantron/bisect_ppx
[releases]: https://github.com/aantron/bisect_ppx/releases
[version]: https://img.shields.io/badge/version-1.3.0-blue.svg
[version]: https://img.shields.io/badge/version-1.3.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
Expand Down
26 changes: 24 additions & 2 deletions doc/CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
Version 1.3.1 (2017-10-05):
---------------------------
Compatibility with OCaml 4.06

- Do not treat bytes and string as equivalent types.

Bugs fixed

- Reporter tool now has better usage/help output (76220cf).
- Various documentation improvements.
- Reduce chance of generated identifier collisions, and make collision a
compile-time error (#160).

Simplifications

- Drop pre-visited points (BISECT-VISIT), and implement them as ignored
points (#159).
- Remove -simple-cases PPX option. This was an internal feature.
- Remove -inexhaustive-matching PPX option. This was an internal feature.
- Internal source code improvements, including a complete reorganization of
the PPX.

Version 1.3.0 (2017-08-16):
---------------------------
Planned to break in the future 2.0.0
Expand Down Expand Up @@ -91,7 +113,7 @@ Version 1.0.0 (2016-02-09):
Version 0.2.6 (2016-01-01):
--------------------------
- Fix missing 'function' and 'fun' expression instrumentation (Anton Bachin).
- Update bisect-report test for recent points (Anton Bachin).
- Update bisect-report test for recent points (Anton Bachin).
- Added appropriate tests (Anton Bachin).

Version 0.2.5 (2015-09-07):
Expand Down Expand Up @@ -134,7 +156,7 @@ Version 0.2 (2015-05-15):

Version 0.1 (2015-05-06):
-------------------------
- start versioning for bisect_ppx (just the ppx no CamlP4) of Bisect.
- start versioning for bisect_ppx (just the ppx no CamlP4) of Bisect.
- Original bisect (changes below).

Version 1.3 (2012-11-03):
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/version.ml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@



let value = "1.3.0"
let value = "1.3.1"

0 comments on commit 42b8fe3

Please sign in to comment.