Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

# Unreleased

- Add `1.17.0` to the list of known versions of ocamllsp

## 1.14.1

- Fix incorrect esy sandbox docs (#1297)
Expand Down
4 changes: 3 additions & 1 deletion src/ocaml_lsp.ml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ let lsp_versions =
; "1.16.0-4.14"
; "1.16.1"
; "1.16.2"
; "1.17.0"
|] )
; ( (5, 0)
, [| "1.13.2~5.0preview"
Expand All @@ -123,8 +124,9 @@ let lsp_versions =
; "1.15.1-5.0"
; "1.16.1"
; "1.16.2"
; "1.17.0"
|] )
; ((5, 1), [| "1.16.1"; "1.16.2" |])
; ((5, 1), [| "1.16.1"; "1.16.2"; "1.17.0" |])
]
in
let rest =
Expand Down