Skip to content

Commit

Permalink
Version bump and fix regression in test rules
Browse files Browse the repository at this point in the history
  • Loading branch information
lukstafi committed Sep 15, 2023
1 parent 142f393 commit c436efc
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
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.2)
(version 0.3.3)

(package
(name ppx_minidebug)
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.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."
Expand Down
6 changes: 3 additions & 3 deletions test/dune
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand All @@ -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)
Expand Down

0 comments on commit c436efc

Please sign in to comment.