Skip to content

Commit

Permalink
Add missing server versions (#1644)
Browse files Browse the repository at this point in the history
  • Loading branch information
voodoos authored Nov 13, 2024
1 parent 8eaa35b commit 6df8e68
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
the expression under the cursor (#1582)
- Run ocamllsp -version in workspace dir (#1641)
- Make it a warning if ocamlc is missing (#1642)
- Add `1.18.0`, `1.19.0` and `1.20.0~5.3preview` to the list of known versions
of ocamllsp (#1644)

## 1.20.1

Expand Down
5 changes: 4 additions & 1 deletion src/ocaml_lsp.ml
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ let lsp_versions =
; "1.16.1"
; "1.16.2"
; "1.17.0"
; "1.18.0"
|] )
; ( (5, 0)
, [| "1.13.2~5.0preview"
Expand All @@ -168,7 +169,9 @@ let lsp_versions =
; "1.16.2"
; "1.17.0"
|] )
; ((5, 1), [| "1.16.1"; "1.16.2"; "1.17.0" |])
; ((5, 1), [| "1.16.1"; "1.16.2"; "1.17.0"; "1.18.0" |])
; ((5, 2), [| "1.19.0" |])
; ((5, 3), [| "1.20.0~5.3preview" |])
]
in
let rest =
Expand Down

0 comments on commit 6df8e68

Please sign in to comment.