Skip to content

Commit

Permalink
v0.3.2, third time the charm
Browse files Browse the repository at this point in the history
  • Loading branch information
lukstafi committed Apr 25, 2023
1 parent 057e499 commit 27e27b3
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)`.

Expand Down
2 changes: 1 addition & 1 deletion dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
7 changes: 4 additions & 3 deletions index.mld
Original file line number Diff line number Diff line change
Expand Up @@ -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)].
Expand Down
2 changes: 1 addition & 1 deletion ppx_minidebug.opam
Original file line number Diff line number Diff line change
@@ -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."
Expand Down

0 comments on commit 27e27b3

Please sign in to comment.