Merge pull request #46 from wintersteiger/christoph/lsp-1.22

Add support for lsp 1.22
This commit is contained in:
Simon Cruanes 2025-01-30 10:49:48 -05:00 committed by GitHub
commit 11efe16420
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 13 additions and 12 deletions

View file

@ -40,6 +40,7 @@ jobs:
lsp-version: lsp-version:
- 1.19.0 - 1.19.0
- 1.20.1 - 1.20.1
- 1.22.0
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@main - uses: actions/checkout@main

View file

@ -31,12 +31,12 @@
("lsp" ("lsp"
(and (and
(>= "1.19") (>= "1.19")
(< "1.21"))) (< "1.23")))
atomic atomic
("jsonrpc" ("jsonrpc"
(and (and
(>= "1.19") (>= "1.19")
(< "1.21"))) (< "1.23")))
("ocaml" ("ocaml"
(>= "4.14")) (>= "4.14"))
("odoc" :with-doc))) ("odoc" :with-doc)))
@ -57,11 +57,11 @@
("lsp" ("lsp"
(and (and
(>= "1.19") (>= "1.19")
(< "1.21"))) (< "1.23")))
("jsonrpc" ("jsonrpc"
(and (and
(>= "1.19") (>= "1.19")
(< "1.21"))) (< "1.23")))
("odoc" :with-doc))) ("odoc" :with-doc)))
(package (package
@ -82,9 +82,9 @@
("lsp" ("lsp"
(and (and
(>= "1.19") (>= "1.19")
(< "1.21"))) (< "1.23")))
("jsonrpc" ("jsonrpc"
(and (and
(>= "1.19") (>= "1.19")
(< "1.21"))) (< "1.23")))
("odoc" :with-doc))) ("odoc" :with-doc)))

View file

@ -14,8 +14,8 @@ depends: [
"base-unix" "base-unix"
"eio" {>= "1.0" & < "2.0"} "eio" {>= "1.0" & < "2.0"}
"eio_main" {with-test} "eio_main" {with-test}
"lsp" {>= "1.19" & < "1.21"} "lsp" {>= "1.19" & < "1.23"}
"jsonrpc" {>= "1.19" & < "1.21"} "jsonrpc" {>= "1.19" & < "1.23"}
"odoc" {with-doc} "odoc" {with-doc}
] ]
build: [ build: [

View file

@ -13,8 +13,8 @@ depends: [
"linol" {= version} "linol" {= version}
"base-unix" "base-unix"
"lwt" {>= "5.1" & < "6.0"} "lwt" {>= "5.1" & < "6.0"}
"lsp" {>= "1.19" & < "1.21"} "lsp" {>= "1.19" & < "1.23"}
"jsonrpc" {>= "1.19" & < "1.21"} "jsonrpc" {>= "1.19" & < "1.23"}
"odoc" {with-doc} "odoc" {with-doc}
] ]
build: [ build: [

View file

@ -12,9 +12,9 @@ depends: [
"yojson" {>= "1.6"} "yojson" {>= "1.6"}
"logs" "logs"
"trace" {>= "0.4"} "trace" {>= "0.4"}
"lsp" {>= "1.19" & < "1.21"} "lsp" {>= "1.19" & < "1.23"}
"atomic" "atomic"
"jsonrpc" {>= "1.19" & < "1.21"} "jsonrpc" {>= "1.19" & < "1.23"}
"ocaml" {>= "4.14"} "ocaml" {>= "4.14"}
"odoc" {with-doc} "odoc" {with-doc}
] ]