Skip to content

Commit

Permalink
Bump version to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aantron committed Feb 9, 2016
1 parent d6a569b commit f355986
Show file tree
Hide file tree
Showing 5 changed files with 22 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 0.2.6][version]][releases] [![Travis status][travis-img]][travis] [![Coverage][coveralls-img]][coveralls]
# Bisect_ppx   [![version 1.0.0][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 @@ -13,7 +13,7 @@ generates for itself.

[self]: https://github.com/rleonid/bisect_ppx
[releases]: https://github.com/rleonid/bisect_ppx/releases
[version]: https://img.shields.io/badge/version-0.2.6-blue.svg
[version]: https://img.shields.io/badge/version-1.0.0-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
14 changes: 14 additions & 0 deletions doc/CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
Version 1.0.0 (2016-02-09):
---------------------------
- Redesign HTML reports.
- Put separate points on each clause of or-patterns.
- Put points on applications of |>.
- Eliminate -safe, -fast, -faster modes. All modes now fast and thread-safe.
- Improve integration with other ppx preprocessors.
- Install native ppx rewriter when possible.
- Adjust which points have which kinds.
- Clean up command-line help of bisect-ppx-report.
- Add Ocamlbuild plugin helper and "coverage" tag.
- New documentation.
- Testing, build, and packaging improvements.

Version 0.2.6 (2016-01-01):
--------------------------
- Fix missing 'function' and 'fun' expression instrumentation (Anton Bachin).
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: "0.2.6"
version: "1.0.0"
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="0.2.6"
version="1.0.0"
description="Code coverage for OCaml"
requires="bisect_ppx.runtime"
ppx="./bisect_ppx"

package "runtime" (
version="0.2.6"
version="1.0.0"
description="Code coverage for OCaml"
archive(byte)="bisect.cma"
archive(native)="bisect.cmxa"
)

package "fast" (
version="0.2.6"
version="1.0.0"
description="Code coverage for OCaml (deprecated package)"
requires="bisect_ppx"
)

package "plugin" (
version="0.2.6"
version="1.0.0"
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 = "0.2.6"
let value = "1.0.0"

0 comments on commit f355986

Please sign in to comment.