Skip to content

Commit

Permalink
v0.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cwong-ocaml committed Aug 18, 2020
1 parent 4006e99 commit 49358f9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.14.1

- Upgrade to ppxlib 0.14.0

## v0.13.1

- Honor the `inline_tests` Dune variable so that inline tests are
Expand Down
3 changes: 2 additions & 1 deletion dune-project
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
(lang dune 1.10)
(lang dune 1.10)
(name ppx_inline_test)
2 changes: 1 addition & 1 deletion ppx_inline_test.opam
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ depends: [
"base" {>= "v0.14" & < "v0.15"}
"time_now" {>= "v0.14" & < "v0.15"}
"dune" {>= "2.0.0"}
"ppxlib" {>= "0.11.0"}
"ppxlib" {>= "0.14.0"}
]
synopsis: "Syntax extension for writing in-line tests in ocaml code"
description: "
Expand Down
2 changes: 1 addition & 1 deletion src/ppx_inline_test.ml
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ let expand_test_module ~loc ~path:_ ~name:id ~tags m =
validate_extension_point_exn ~name_of_ppx_rewriter ~loc ~tags;
apply_to_descr "test_module" ~loc ~inner_loc:m.pmod_loc None id tags
(pexp_fun ~loc Nolabel None (punit ~loc)
(pexp_letmodule ~loc (Located.mk ~loc "M")
(pexp_letmodule ~loc (Located.mk ~loc (Some "M"))
m
(eunit ~loc)))
;;
Expand Down

0 comments on commit 49358f9

Please sign in to comment.