Skip to content

Commit f355986

Browse files
committed
Bump version to 1.0.0
1 parent d6a569b commit f355986

File tree

5 files changed

+22
-8
lines changed

5 files changed

+22
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Bisect_ppx   [![version 0.2.6][version]][releases] [![Travis status][travis-img]][travis] [![Coverage][coveralls-img]][coveralls]
1+
# Bisect_ppx   [![version 1.0.0][version]][releases] [![Travis status][travis-img]][travis] [![Coverage][coveralls-img]][coveralls]
22

33
[Bisect_ppx][self] is a code coverage tool for OCaml. It helps you test
44
thoroughly by showing which parts of your code are **not** tested. You can also
@@ -13,7 +13,7 @@ generates for itself.
1313

1414
[self]: https://github.com/rleonid/bisect_ppx
1515
[releases]: https://github.com/rleonid/bisect_ppx/releases
16-
[version]: https://img.shields.io/badge/version-0.2.6-blue.svg
16+
[version]: https://img.shields.io/badge/version-1.0.0-blue.svg
1717
[self-coverage]: http://rleonid.github.io/bisect_ppx/coverage/
1818
[travis]: https://travis-ci.org/rleonid/bisect_ppx/branches
1919
[travis-img]: https://img.shields.io/travis/rleonid/bisect_ppx/master.svg

doc/CHANGES

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
Version 1.0.0 (2016-02-09):
2+
---------------------------
3+
- Redesign HTML reports.
4+
- Put separate points on each clause of or-patterns.
5+
- Put points on applications of |>.
6+
- Eliminate -safe, -fast, -faster modes. All modes now fast and thread-safe.
7+
- Improve integration with other ppx preprocessors.
8+
- Install native ppx rewriter when possible.
9+
- Adjust which points have which kinds.
10+
- Clean up command-line help of bisect-ppx-report.
11+
- Add Ocamlbuild plugin helper and "coverage" tag.
12+
- New documentation.
13+
- Testing, build, and packaging improvements.
14+
115
Version 0.2.6 (2016-01-01):
216
--------------------------
317
- Fix missing 'function' and 'fun' expression instrumentation (Anton Bachin).

opam/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: "bisect_ppx"
2-
version: "0.2.6"
2+
version: "1.0.0"
33
opam-version: "1.2"
44
maintainer: "Leonid Rozenberg <leonidr@gmail.com>"
55
authors: [

src/META

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
version="0.2.6"
1+
version="1.0.0"
22
description="Code coverage for OCaml"
33
requires="bisect_ppx.runtime"
44
ppx="./bisect_ppx"
55

66
package "runtime" (
7-
version="0.2.6"
7+
version="1.0.0"
88
description="Code coverage for OCaml"
99
archive(byte)="bisect.cma"
1010
archive(native)="bisect.cmxa"
1111
)
1212

1313
package "fast" (
14-
version="0.2.6"
14+
version="1.0.0"
1515
description="Code coverage for OCaml (deprecated package)"
1616
requires="bisect_ppx"
1717
)
1818

1919
package "plugin" (
20-
version="0.2.6"
20+
version="1.0.0"
2121
description="Bisect_ppx Ocamlbuild plugin"
2222
archive(byte)="bisect_ppx_plugin.cma"
2323
archive(native)="bisect_ppx_plugin.cmxa"

src/library/version.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
let value = "0.2.6"
1+
let value = "1.0.0"

0 commit comments

Comments
 (0)