Skip to content

Commit 4a8dd7e

Browse files
committed
fix: minimum OCaml version
it is now 4.13 Signed-off-by: Rudi Grinberg <[email protected]>
1 parent 602f799 commit 4a8dd7e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Makefile

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

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ git clone --recursive [email protected]:ocaml/ocaml-lsp.git
109109
git submodule update --init --recursive
110110

111111
# create local switch (or use global one) and install dependencies
112-
opam switch create . ocaml-base-compiler.4.12.0 --with-test
112+
opam switch create . ocaml-base-compiler.4.13.0 --with-test
113113

114114
# don't forget to set your environment to use the local switch
115115
eval $(opam env)

dune-project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ possible and does not make any assumptions about IO.
5555
(result (>= 1.5))
5656
(ocamlformat-rpc-lib (and (>= 0.18.0) (< 0.20.0)))
5757
(odoc :with-doc)
58-
(ocaml (and (>= 4.12) (< 4.13)))))
58+
(ocaml (and (>= 4.13) (< 4.14)))))
5959

6060
(package
6161
(name jsonrpc)

ocaml-lsp-server.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ depends: [
3030
"result" {>= "1.5"}
3131
"ocamlformat-rpc-lib" {>= "0.18.0" & < "0.20.0"}
3232
"odoc" {with-doc}
33-
"ocaml" {>= "4.12" & < "4.13"}
33+
"ocaml" {>= "4.13" & < "4.14"}
3434
]
3535
dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git"
3636
build: [

0 commit comments

Comments
 (0)