diff --git a/CHANGES.md b/CHANGES.md index 9c4553187..c77d582bd 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,9 @@ +# 1.11.3 + +## Fixes + +- Enable dune rpc integration by default (#691, fixes #690) + # 1.11.2 ## Fixes diff --git a/ocaml-lsp-server/src/dune.ml b/ocaml-lsp-server/src/dune.ml index f4f9ded23..355857236 100644 --- a/ocaml-lsp-server/src/dune.ml +++ b/ocaml-lsp-server/src/dune.ml @@ -713,10 +713,10 @@ let create workspaces (client_capabilities : ClientCapabilities.t) diagnostics let create workspaces (client_capabilities : ClientCapabilities.t) diagnostics progress document_store ~log = - if inside_test then + if inside_test then ref Closed + else create workspaces client_capabilities diagnostics progress document_store ~log - else ref Closed let run_loop t = Fiber.repeat_while ~init:() ~f:(fun () ->