Skip to content

Commit

Permalink
v0.14.1
Browse files Browse the repository at this point in the history
Signed-off-by: Cameron Wong <[email protected]>
  • Loading branch information
cwong-ocaml committed Oct 30, 2020
1 parent 7e66534 commit c2003b1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
- Make sure the code we generate can be typed without warning when `-principal`
is passed to the compiler.

## v0.14.1

- Update to be compatible with ppxlib 0.18.0

## v0.11

- Change `ppx_expect` so that when `-diff-cmd -` is passed, they write the
Expand Down
4 changes: 2 additions & 2 deletions expect_payload/ppx_expect_payload.ml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ let make ~kind payload ~(extension_id_loc : Location.t) =
let pattern () =
Ast_pattern.(
map
(single_expr_payload (pexp_loc __ (pexp_constant (pconst_string __ __))))
~f:(fun f loc s tag -> f (Some (loc, s, tag)))
(single_expr_payload (pexp_loc __ (pexp_constant (pconst_string __ __ __))))
~f:(fun f loc s _loc tag -> f (Some (loc, s, tag)))
||| map (pstr nil) ~f:(fun f -> f None))
;;
2 changes: 1 addition & 1 deletion ppx_expect.opam
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ depends: [
"ppx_inline_test" {>= "v0.14" & < "v0.15"}
"stdio" {>= "v0.14" & < "v0.15"}
"dune" {>= "2.0.0"}
"ppxlib" {>= "0.11.0"}
"ppxlib" {>= "0.18.0"}
"re" {>= "1.8.0"}
]
synopsis: "Cram like framework for OCaml"
Expand Down

0 comments on commit c2003b1

Please sign in to comment.