Skip to content

Commit 37bf387

Browse files
committed
feature: add support for OCaml 5
1 parent 45b45fb commit 37bf387

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- ubuntu-latest
2020
- windows-latest
2121
ocaml-compiler:
22-
- 4.14.x
22+
- 5.0.x
2323

2424
runs-on: ${{ matrix.os }}
2525

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ install-test-deps:
2222

2323
.PHONY: dev
2424
dev: ## Setup a development environment
25-
opam switch create --no-install . ocaml-base-compiler.4.14.0
25+
opam switch create --no-install . ocaml-base-compiler.5.0.0
2626
opam install -y dune-release merlin ocamlformat utop ocaml-lsp-server
2727
opam install --locked --deps-only --with-doc -y .
2828
$(MAKE) install-test-deps

dune-project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ possible and does not make any assumptions about IO.
6666
(csexp (>= 1.5))
6767
(ocamlformat-rpc-lib (>= 0.21.0))
6868
(odoc :with-doc)
69-
(ocaml (and (>= 4.14) (< 4.15)))))
69+
(ocaml (and (>= 5.0) (< 5.1)))))
7070

7171
(package
7272
(name jsonrpc)

ocaml-lsp-server.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ depends: [
4242
"csexp" {>= "1.5"}
4343
"ocamlformat-rpc-lib" {>= "0.21.0"}
4444
"odoc" {with-doc}
45-
"ocaml" {>= "4.14" & < "4.15"}
45+
"ocaml" {>= "5.0" & < "5.1"}
4646
]
4747
dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git"
4848
build: [

ocaml-lsp-server/vendor/merlin

Submodule merlin updated 274 files

submodules/lev/.github/workflows/workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- ubuntu-latest
1616
- windows-latest
1717
ocaml-compiler:
18-
- 4.14.x
18+
- 5.0.x
1919

2020
runs-on: ${{ matrix.os }}
2121

0 commit comments

Comments
 (0)