Skip to content

Commit

Permalink
CHANGES
Browse files Browse the repository at this point in the history
Signed-off-by: Nicolás Ojeda Bär <[email protected]>
  • Loading branch information
nojb committed Sep 21, 2021
1 parent 17ea723 commit 97b6be2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,9 @@ Unreleased
new `(subst <disable|enable>)` stanza to the `dune-project` file.
(#4864, @kit-ty-kate)

- No longer reference deprecated Toploop functions when using dune files in
OCaml syntax. (#4834, fixes #4830, @nojb)

2.9.1 (07/09/2021)
------------------

Expand Down
6 changes: 4 additions & 2 deletions src/dune_rules/assets.ml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
let jbuild_plugin_ml = {jbp|
let () =
let open Toploop in
let set_directive name desc = add_directive name desc (get_directive_info name) in
let set_directive name desc =
add_directive name desc (get_directive_info name)
in
set_directive "require" (Directive_string ignore);
set_directive "use"
(Directive_string
Expand Down Expand Up @@ -74,4 +76,4 @@ module V1 : sig
(** Execute a command and read its output *)
val run_and_read_lines : string -> string list
end
|jbp}
|jbp}

0 comments on commit 97b6be2

Please sign in to comment.