Skip to content

Commit a966fb4

Browse files
committed
chore: update lev
Signed-off-by: Rudi Grinberg <[email protected]> ps-id: f4660663-d355-4955-b1ef-af05b568d607
1 parent f780ac3 commit a966fb4

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 1.12.1
2+
3+
## Fixes
4+
5+
- Fix preprocessing, ppx, and reason support (#735 fixes #696, #706)
6+
17
# 1.12.0
28

39
## Features

lsp-fiber/test/lsp_fiber_test.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ let test make_client make_server =
3939
let+ () = Fiber.fork_and_join_unit server client in
4040
print_endline "Successful termination of test"
4141
in
42-
Lev_fiber.run (Lev.Loop.default ()) ~f:run;
42+
Lev_fiber.run (Lev.Loop.create ()) ~f:run;
4343
print_endline "[TEST] finished"
4444

4545
let json_pp = Yojson.Safe.pretty_print ~std:false

ocaml-lsp-server/src/ocaml_lsp_server.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1114,4 +1114,4 @@ let start () =
11141114
let run ~read_dot_merlin () =
11151115
Merlin_config.should_read_dot_merlin := read_dot_merlin;
11161116
Unix.putenv "__MERLIN_MASTER_PID" (string_of_int (Unix.getpid ()));
1117-
Lev_fiber.run (Lev.Loop.default ()) ~f:start
1117+
Lev_fiber.run (Lev.Loop.create ()) ~f:start

ocaml-lsp-server/test/e2e-new/start_stop.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ let%expect_test "start/stop" =
6060
in
6161
Lev_fiber.run
6262
~f:(fun () -> Fiber.all_concurrently_unit [ init; waitpid ])
63-
(Lev.Loop.default ());
63+
(Lev.Loop.create ());
6464
[%expect
6565
{|
6666
client: server initialized with:

0 commit comments

Comments
 (0)