Skip to content

Commit c2003b1

Browse files
committed
v0.14.1
Signed-off-by: Cameron Wong <[email protected]>
1 parent 7e66534 commit c2003b1

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGES.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
- Make sure the code we generate can be typed without warning when `-principal`
55
is passed to the compiler.
66

7+
## v0.14.1
8+
9+
- Update to be compatible with ppxlib 0.18.0
10+
711
## v0.11
812

913
- Change `ppx_expect` so that when `-diff-cmd -` is passed, they write the

expect_payload/ppx_expect_payload.ml

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ let make ~kind payload ~(extension_id_loc : Location.t) =
8686
let pattern () =
8787
Ast_pattern.(
8888
map
89-
(single_expr_payload (pexp_loc __ (pexp_constant (pconst_string __ __))))
90-
~f:(fun f loc s tag -> f (Some (loc, s, tag)))
89+
(single_expr_payload (pexp_loc __ (pexp_constant (pconst_string __ __ __))))
90+
~f:(fun f loc s _loc tag -> f (Some (loc, s, tag)))
9191
||| map (pstr nil) ~f:(fun f -> f None))
9292
;;

ppx_expect.opam

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ depends: [
1717
"ppx_inline_test" {>= "v0.14" & < "v0.15"}
1818
"stdio" {>= "v0.14" & < "v0.15"}
1919
"dune" {>= "2.0.0"}
20-
"ppxlib" {>= "0.11.0"}
20+
"ppxlib" {>= "0.18.0"}
2121
"re" {>= "1.8.0"}
2222
]
2323
synopsis: "Cram like framework for OCaml"

0 commit comments

Comments
 (0)