Skip to content

Commit

Permalink
[new release] ocaml-lsp-server and lsp (1.1.0)
Browse files Browse the repository at this point in the history
CHANGES:

## Features

- Implement a command to switch between module interfaces and implementations
  (ocaml/ocaml-lsp#254)

## Fixes

- Do not crash on invalid positions (ocaml/ocaml-lsp#248)

- add missing record fields to list of completions (ocaml/ocaml-lsp#253)

- do not offer `destruct` as a code action in interface files (ocaml/ocaml-lsp#255)
  • Loading branch information
rgrinberg committed Oct 14, 2020
1 parent c5d6fff commit 20c8131
Show file tree
Hide file tree
Showing 2 changed files with 108 additions and 0 deletions.
57 changes: 57 additions & 0 deletions packages/lsp/lsp.1.1.0/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
opam-version: "2.0"
synopsis: "LSP protocol implementation in OCaml"
description: """

Implementation of the LSP protocol in OCaml. It is designed to be as portable as
possible and does not make any assumptions about IO.
"""
maintainer: ["Rudi Grinberg <[email protected]>"]
authors: [
"Andrey Popp <[email protected]>"
"Rusty Key <[email protected]>"
"Louis Roché <[email protected]>"
"Oleksiy Golovko <[email protected]>"
"Rudi Grinberg <[email protected]>"
"Sacha Ayoun <[email protected]>"
"cannorin <[email protected]>"
]
license: "ISC"
homepage: "https://github.com/ocaml/ocaml-lsp"
bug-reports: "https://github.com/ocaml/ocaml-lsp/issues"
depends: [
"stdlib-shims"
"yojson"
"ppx_yojson_conv_lib"
"ocaml-syntax-shims"
"cppo"
"uutf"
"csexp"
"menhir" {with-test}
"cinaps" {with-test}
"ppx_expect" {with-test & >= "v0.14.0"}
"ocaml" {>= "4.06"}
"dune" {>= "2.0"}
]
dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git"
build: [
["dune" "subst"] {pinned}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@doc" {with-doc}
]
]
x-commit-hash: "fee074471b2c345f7e42c6ed3482363279d4f32c"
url {
src:
"https://github.com/ocaml/ocaml-lsp/releases/download/1.1.0/ocaml-lsp-server-1.1.0.tbz"
checksum: [
"sha256=fa0ca1d3c5c3377f798c221381228a65e8f49fece42715d279ebe91f2f4f74c8"
"sha512=c00ad47478a4ddfebe3798895700d2bececa29a610c7757619f47a5b90ede921afa56efc776df3a1c4a8b2f082898423a5806d00c041dae137da1b57ee487a9b"
]
}
51 changes: 51 additions & 0 deletions packages/ocaml-lsp-server/ocaml-lsp-server.1.1.0/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
opam-version: "2.0"
synopsis: "LSP Server for OCaml"
description: "An LSP server for OCaml."
maintainer: ["Rudi Grinberg <[email protected]>"]
authors: [
"Andrey Popp <[email protected]>"
"Rusty Key <[email protected]>"
"Louis Roché <[email protected]>"
"Oleksiy Golovko <[email protected]>"
"Rudi Grinberg <[email protected]>"
"Sacha Ayoun <[email protected]>"
"cannorin <[email protected]>"
]
license: "ISC"
homepage: "https://github.com/ocaml/ocaml-lsp"
bug-reports: "https://github.com/ocaml/ocaml-lsp/issues"
depends: [
"yojson"
"stdlib-shims"
"menhir"
"ppx_yojson_conv_lib"
"dune-build-info"
"csexp" {>= "1.2.3"}
"result" {>= "1.5"}
"ocamlformat" {with-test}
"reason" {with-test}
"ocamlfind" {>= "1.5.2"}
"ocaml" {>= "4.06"}
"dune" {>= "2.5.0"}
]
dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git"
build: [
["dune" "subst"] {pinned}
[
"dune"
"build"
"-j"
jobs
"ocaml-lsp-server.install"
"--release"
]
]
x-commit-hash: "fee074471b2c345f7e42c6ed3482363279d4f32c"
url {
src:
"https://github.com/ocaml/ocaml-lsp/releases/download/1.1.0/ocaml-lsp-server-1.1.0.tbz"
checksum: [
"sha256=fa0ca1d3c5c3377f798c221381228a65e8f49fece42715d279ebe91f2f4f74c8"
"sha512=c00ad47478a4ddfebe3798895700d2bececa29a610c7757619f47a5b90ede921afa56efc776df3a1c4a8b2f082898423a5806d00c041dae137da1b57ee487a9b"
]
}

0 comments on commit 20c8131

Please sign in to comment.