diff --git a/markup.opam b/markup.opam index 40d0c87..f0da2a8 100644 --- a/markup.opam +++ b/markup.opam @@ -1,5 +1,5 @@ opam-version: "1.2" -version: "dev" +version: "0.7.7" maintainer: "Anton Bachin " authors: "Anton Bachin " @@ -10,9 +10,6 @@ dev-repo: "https://github.com/aantron/markup.ml.git" license: "BSD" depends: [ - # Bisect_ppx is used only during development. The dependency should be removed - # when making a release. - "bisect_ppx" {>= "1.3.0"} "jbuilder" {build & >= "1.0+beta17"} "ounit" {test} "uchar" diff --git a/src/jbuild b/src/jbuild index 6ce646d..39fad45 100644 --- a/src/jbuild +++ b/src/jbuild @@ -5,7 +5,6 @@ (public_name markup) (synopsis "Error-recovering functional HTML5 and XML parsers") (modules (:standard \ configure)) - (preprocess (pps (bisect_ppx -conditional))) (libraries (uutf)) (ocamlopt_flags (:standard (:include flags.sexp))) (flags (:standard -w +A-4-9-44-48 -warn-error -3-4-9-44-48 -safe-string)))) diff --git a/src/lwt/jbuild b/src/lwt/jbuild index 7bc481c..77d0924 100644 --- a/src/lwt/jbuild +++ b/src/lwt/jbuild @@ -5,6 +5,5 @@ (public_name markup.lwt) (synopsis "Lwt support for Markup.ml") (optional) - (preprocess (pps (bisect_ppx -conditional))) (libraries (lwt markup)) (flags (:standard -w +A-4-9-44-48 -warn-error -3-4-9-44-48 -safe-string)))) diff --git a/src/lwt_unix/jbuild b/src/lwt_unix/jbuild index 8e120a8..e5c0ba6 100644 --- a/src/lwt_unix/jbuild +++ b/src/lwt_unix/jbuild @@ -5,6 +5,5 @@ (public_name markup.lwt.unix) (synopsis "Lwt_unix helpers for Markup.ml") (optional) - (preprocess (pps (bisect_ppx -conditional))) (libraries (lwt lwt.unix markup markup.lwt)) (flags (:standard -w +A-4-9-44-48 -warn-error -3-4-9-44-48 -safe-string))))