Skip to content
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

Preparing 0.21.0.0 release #238

Merged
merged 3 commits into from
Mar 21, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
11 changes: 11 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Revision history for haskell-lsp

## 0.21.0.0

* Stop getCompletionPrefix from crashing if beforePos is empty
* Add DidChangeWatchedFilesRegistrationOptions
* Add NormalizedFilePath from ghcide
* Add diagnostic and completion tags
* Fix language server example
* Correctly fix the problem with '$/' notifications
* Add azure ci
* Force utf8 encoding when writing vfs temp files
alanz marked this conversation as resolved.
Show resolved Hide resolved

## 0.20.0.1

* Fix Haddock generation syntax error
Expand Down
11 changes: 11 additions & 0 deletions haskell-lsp-types/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Revision history for haskell-lsp-types

## 0.21.0.0

* Stop getCompletionPrefix from crashing if beforePos is empty
* Add DidChangeWatchedFilesRegistrationOptions
* Add NormalizedFilePath from ghcide
* Add diagnostic and completion tags
* Fix language server example
* Correctly fix the problem with '$/' notifications
* Add azure ci
* Force utf8 encoding when writing vfs temp files
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

here too, but maybe we should add it to the 0.20.0.0 part


## 0.20.0.0

* Don't log errors for '$/' notifications (@jinwoo)
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.20.0.0
version: 0.21.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.20.0.1
version: 0.21.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.20.*
, haskell-lsp-types == 0.21.*
, lens >= 4.15.2
, mtl
, network-uri
Expand Down