Skip to content

Commit 49358f9

Browse files
committed
v0.14.1
1 parent 4006e99 commit 49358f9

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v0.14.1
2+
3+
- Upgrade to ppxlib 0.14.0
4+
15
## v0.13.1
26

37
- Honor the `inline_tests` Dune variable so that inline tests are

dune-project

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
(lang dune 1.10)
1+
(lang dune 1.10)
2+
(name ppx_inline_test)

ppx_inline_test.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ depends: [
1515
"base" {>= "v0.14" & < "v0.15"}
1616
"time_now" {>= "v0.14" & < "v0.15"}
1717
"dune" {>= "2.0.0"}
18-
"ppxlib" {>= "0.11.0"}
18+
"ppxlib" {>= "0.14.0"}
1919
]
2020
synopsis: "Syntax extension for writing in-line tests in ocaml code"
2121
description: "

src/ppx_inline_test.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ let expand_test_module ~loc ~path:_ ~name:id ~tags m =
178178
validate_extension_point_exn ~name_of_ppx_rewriter ~loc ~tags;
179179
apply_to_descr "test_module" ~loc ~inner_loc:m.pmod_loc None id tags
180180
(pexp_fun ~loc Nolabel None (punit ~loc)
181-
(pexp_letmodule ~loc (Located.mk ~loc "M")
181+
(pexp_letmodule ~loc (Located.mk ~loc (Some "M"))
182182
m
183183
(eunit ~loc)))
184184
;;

0 commit comments

Comments
 (0)