diff --git a/CHANGELOG.md b/CHANGELOG.md index feb5df7..adc5089 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [0.3.2] -- 2023-04-25 + +### Fixed + +- Third time the charm! Missing version bounds on `ocaml` and `ppxlib` to make CI happy. +- BSD-compatible `sed` arguments to make CI happy. + ## [0.3.1] -- 2023-03-30 ### Fixed diff --git a/README.md b/README.md index 00520ee..5b46fd9 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Take a look at [`ppx_debug`](https://github.com/dariusf/ppx_debug) which is sign See also [the generated documentation](https://lukstafi.github.io/ppx_minidebug/). - To install `ppx_minidebug` from sources, download it with e.g. `gh repo clone lukstafi/ppx_minidebug; cd ppx_minidebug` and then either `dune install` or `opam install .` +Try `opam install ppx_minidebug` to install from the opam repository. To install `ppx_minidebug` from sources, download it with e.g. `gh repo clone lukstafi/ppx_minidebug; cd ppx_minidebug` and then either `dune install` or `opam install .`. To use `ppx_minidebug` in a Dune project, add/modify these stanzas: `(preprocess (pps ... ppx_minidebug))`, and `(libraries ... ppx_minidebug.runtime)`. diff --git a/dune-project b/dune-project index 9141910..1280d48 100644 --- a/dune-project +++ b/dune-project @@ -15,7 +15,7 @@ (documentation https://lukstafi.github.io/ppx_minidebug/ppx_minidebug) -(version 0.3.1) +(version 0.3.2) (package (name ppx_minidebug) diff --git a/index.mld b/index.mld index be9a092..ef6a9eb 100644 --- a/index.mld +++ b/index.mld @@ -14,9 +14,10 @@ See {{:http://lukstafi.github.io/ppx_minidebug/minidebug_runtime/Minidebug_runti {2 Usage} - To install `ppx_minidebug` from sources, download it with e.g. - [gh repo clone lukstafi/ppx_minidebug; cd ppx_minidebug] and then either [dune install] or - [opam install .] +Try [opam install ppx_minidebug] to install from the opam repository. To install `ppx_minidebug` +from sources, download it with e.g. +[gh repo clone lukstafi/ppx_minidebug; cd ppx_minidebug] and then either [dune install] or +[opam install .]. To use [ppx_minidebug] in a Dune project, add/modify these stanzas: [(preprocess (pps ... ppx_minidebug))], and [(libraries ... ppx_minidebug.runtime)]. diff --git a/ppx_minidebug.opam b/ppx_minidebug.opam index 32952bf..004631e 100644 --- a/ppx_minidebug.opam +++ b/ppx_minidebug.opam @@ -1,6 +1,6 @@ # This file is generated by dune, edit dune-project instead opam-version: "2.0" -version: "0.3.1" +version: "0.3.2" synopsis: "Debug logs for selected functions and let-bindings" description: "A poor man's `ppx_debug` with formatted logs of let-bound values, function arguments and results."