Skip to content

Preparing 0.18 release #201

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 16, 2019
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
8 changes: 8 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Revision history for haskell-lsp

## 0.18.0.0 -- 2019-11-14

* Virtual file fixes, removing race conditions and other cleanups (@mpickering)
* Add missing fmClientPrepareRenameRequest to MessageFuncs export (@alanz)
* Make explicit GHC 8.6.5 stack file (@alanz)
* Rework Core.Options and infer all server capabilities from handlers (@bubba)
* Generate lenses for WorkDoneProgress data types (@alanz)

## 0.17.0.0 -- 2019-10-18

* Update progress reporting to match the LSP 3.15 specification (@cocreature)
Expand Down
6 changes: 6 additions & 0 deletions haskell-lsp-types/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Revision history for haskell-lsp-types

## 0.18.0.0 -- 2019-11-14

* Add missing fmClientPrepareRenameRequest to MessageFuncs export (@alanz)
* Rework Core.Options and infer all server capabilities from handlers (@bubba)
* Generate lenses for WorkDoneProgress data types (@alanz)

## 0.17.0.0 -- 2019-10-18

* Update progress reporting to match the LSP 3.15 specification (@cocreature)
Expand Down
2 changes: 1 addition & 1 deletion haskell-lsp-types/haskell-lsp-types.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: haskell-lsp-types
version: 0.17.0.0
version: 0.18.0.0
synopsis: Haskell library for the Microsoft Language Server Protocol, data types

description: An implementation of the types to allow language implementors to
Expand Down
4 changes: 2 additions & 2 deletions haskell-lsp.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: haskell-lsp
version: 0.17.0.0
version: 0.18.0.0
synopsis: Haskell library for the Microsoft Language Server Protocol

description: An implementation of the types, and basic message server to
Expand Down Expand Up @@ -46,7 +46,7 @@ library
, filepath
, hslogger
, hashable
, haskell-lsp-types == 0.17.*
, haskell-lsp-types == 0.18.*
, lens >= 4.15.2
, mtl
, network-uri
Expand Down