diff --git a/CHANGELOG.md b/CHANGELOG.md index 688e61d..5993833 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,15 @@ -## [0.3.2] -- 2023-09-15 +## [0.3.3] -- 2023-09-15 ### Changed -- Breaking change: explicitly set whether logs should be time tagged. +## [0.3.2] -- 2023-04-25 + +### Fixed + +-- Missing version bounds on `ocaml` and `ppxlib` to make CI happy. + ## [0.3.1] -- 2023-03-30 ### Fixed diff --git a/dune-project b/dune-project index 1280d48..ada93a2 100644 --- a/dune-project +++ b/dune-project @@ -15,7 +15,7 @@ (documentation https://lukstafi.github.io/ppx_minidebug/ppx_minidebug) -(version 0.3.2) +(version 0.3.3) (package (name ppx_minidebug) diff --git a/ppx_minidebug.opam b/ppx_minidebug.opam index 004631e..9b3655e 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.2" +version: "0.3.3" 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." diff --git a/test/dune b/test/dune index ed27b19..058fce8 100644 --- a/test/dune +++ b/test/dune @@ -57,7 +57,7 @@ (rule (alias runtest) - (action (diff debugger_sexp_printbox.expected.log debugger_sexp_printbox.actual.log))) + (action (diff debugger_sexp_printbox.expected.log debugger_sexp_printbox.log))) (executable (name test_debug_pp) @@ -73,7 +73,7 @@ (rule (alias runtest) - (action (diff debugger_pp_format.expected.log debugger_pp_format.actual.log))) + (action (diff debugger_pp_format.expected.log debugger_pp_format.log))) (executable (name test_debug_show) @@ -89,7 +89,7 @@ (rule (alias runtest) - (action (diff debugger_show_flushing.expected.log debugger_show_flushing.actual.log))) + (action (diff debugger_show_flushing.expected.log debugger_show_flushing.log))) (library (name test_inline_tests)