From f355986c589cf1579316cf1a060d2a1c45807385 Mon Sep 17 00:00:00 2001 From: Anton Bachin Date: Thu, 4 Feb 2016 17:17:07 -0600 Subject: [PATCH] Bump version to 1.0.0 --- README.md | 4 ++-- doc/CHANGES | 14 ++++++++++++++ opam/opam | 2 +- src/META | 8 ++++---- src/library/version.ml | 2 +- 5 files changed, 22 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 06ddd65e..7eb95e52 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 diff --git a/doc/CHANGES b/doc/CHANGES index 08fbad47..a4321930 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -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). diff --git a/opam/opam b/opam/opam index 350b2fa7..6ac97e99 100644 --- a/opam/opam +++ b/opam/opam @@ -1,5 +1,5 @@ name: "bisect_ppx" -version: "0.2.6" +version: "1.0.0" opam-version: "1.2" maintainer: "Leonid Rozenberg " authors: [ diff --git a/src/META b/src/META index 692313a9..be4ec183 100644 --- a/src/META +++ b/src/META @@ -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" diff --git a/src/library/version.ml b/src/library/version.ml index 5a462b2f..9c2c0c74 100644 --- a/src/library/version.ml +++ b/src/library/version.ml @@ -1 +1 @@ -let value = "0.2.6" +let value = "1.0.0"