Skip to content

Commit

Permalink
Bump version to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aantron committed Nov 8, 2016
1 parent 5ac7833 commit eefbeeb
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 11 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.1.0][version]][releases] [![Travis status][travis-img]][travis] [![Coverage][coveralls-img]][coveralls]
# Bisect_ppx   [![version 1.2.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 @@ -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.1.0-blue.svg
[version]: https://img.shields.io/badge/version-1.2.0-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
20 changes: 20 additions & 0 deletions doc/CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
Version 1.2.0 (2016-11-08):
---------------------------
Additions

- Compatibility with OCaml 4.04 (#113).
- Install .mli files (#98, prompted Christian Lindig).

Removals

This release removes several features which appear to get little or no use.

- Rename package bisect_ppx.plugin to bisect_ppx.ocamlbuild; bisect_ppx.plugin
is still available as a deprecated name (#93).
- Remove -combine-expr option from the reporter (#105, #106).
- Remove EMMA, XML, and "bisect" output formats (#105, #106).
- Remove obsolete -no-navbar and -no-folding options from HTML output (#106).
- Remove point kinds (#101).
- Eliminate .cmp files; this makes the -I option unnecessary for output
formats besides HTML (#102, #108).

Version 1.1.0 (2016-04-02):
---------------------------
- Port to 4.03.
Expand Down
4 changes: 3 additions & 1 deletion doc/RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
- `grep` for the previous version number. Replace occurences with the new
version number. This should include `META`, `opam`, `version.ml`, and
`README.md`,
- Tag (`tag -a`) the release and push the tag.
- Tag (`tag -a`) the release. Include the changelog in the tag message, so it
can be viewed with `git tag -n99`.
- Push the tag.
- Submit the release to OPAM.
- After release is accepted in OPAM, make a GitHub release for it as well. List
the changes there. The reason this is done after OPAM is that the OPAM release
Expand Down
7 changes: 5 additions & 2 deletions opam/opam
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
name: "bisect_ppx"
version: "1.1.0"
version: "1.2.0"
opam-version: "1.2"
maintainer: "Anton Bachin <[email protected]>"
maintainer: [
"Anton Bachin <[email protected]>"
"Leonid Rozenberg <[email protected]>"
]
authors: [
"Xavier Clerc <[email protected]>"
"Leonid Rozenberg <[email protected]>"
Expand Down
10 changes: 5 additions & 5 deletions src/META
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
version="1.1.0"
version="1.2.0"
description="Code coverage for OCaml"
requires="bisect_ppx.runtime"
ppx="./bisect_ppx"

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

package "fast" (
version="1.1.0"
version="1.2.0"
description="Code coverage for OCaml (deprecated package)"
requires="bisect_ppx"
)

package "ocamlbuild" (
version="1.1.0"
version="1.2.0"
description="Bisect_ppx Ocamlbuild plugin"
archive(byte)="bisect_ppx_plugin.cma"
archive(native)="bisect_ppx_plugin.cmxa"
)

package "plugin" (
version="1.1.0"
version="1.2.0"
description="Bisect_ppx Ocamlbuild plugin (deprecated package)"
requires="bisect_ppx.ocamlbuild"
)
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.1.0"
let value = "1.2.0"

0 comments on commit eefbeeb

Please sign in to comment.