From 703d9c6e460c9cfd40605a6cacc234ba33ac631e Mon Sep 17 00:00:00 2001 From: Alan Zimmerman Date: Fri, 20 Mar 2020 20:33:01 +0000 Subject: [PATCH 1/3] Preparing 0.21.0.0 release --- ChangeLog.md | 11 +++++++++++ haskell-lsp-types/ChangeLog.md | 11 +++++++++++ haskell-lsp-types/haskell-lsp-types.cabal | 2 +- haskell-lsp.cabal | 4 ++-- 4 files changed, 25 insertions(+), 3 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 3fc7e97de..a4591c555 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -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 + ## 0.20.0.1 * Fix Haddock generation syntax error diff --git a/haskell-lsp-types/ChangeLog.md b/haskell-lsp-types/ChangeLog.md index 930610862..fd543ce84 100644 --- a/haskell-lsp-types/ChangeLog.md +++ b/haskell-lsp-types/ChangeLog.md @@ -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 + ## 0.20.0.0 * Don't log errors for '$/' notifications (@jinwoo) diff --git a/haskell-lsp-types/haskell-lsp-types.cabal b/haskell-lsp-types/haskell-lsp-types.cabal index de5bd0cc7..55ea1c98c 100644 --- a/haskell-lsp-types/haskell-lsp-types.cabal +++ b/haskell-lsp-types/haskell-lsp-types.cabal @@ -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 diff --git a/haskell-lsp.cabal b/haskell-lsp.cabal index 14c1ad04c..75962ba0f 100644 --- a/haskell-lsp.cabal +++ b/haskell-lsp.cabal @@ -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 @@ -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 From d38ab619f654851feacae61df8dbdf6efe8e6131 Mon Sep 17 00:00:00 2001 From: Alan Zimmerman Date: Sat, 21 Mar 2020 00:42:38 +0000 Subject: [PATCH 2/3] Fix ChangeLog --- ChangeLog.md | 1 - 1 file changed, 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index a4591c555..cb5146c41 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -9,7 +9,6 @@ * Fix language server example * Correctly fix the problem with '$/' notifications * Add azure ci -* Force utf8 encoding when writing vfs temp files ## 0.20.0.1 From d507a9b0bdd105d4e00f0ea56c3434bcab6bb1c7 Mon Sep 17 00:00:00 2001 From: Alan Zimmerman Date: Sat, 21 Mar 2020 10:50:44 +0000 Subject: [PATCH 3/3] Tweak ChangeLog --- ChangeLog.md | 1 + haskell-lsp-types/ChangeLog.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index cb5146c41..fca8a17f9 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -16,6 +16,7 @@ ## 0.20.0.0 +* Force utf8 encoding when writing vfs temp files * Don't log errors for '$/' notifications (@jinwoo) * Force utf8 encoding when writing vfs temp files (@jneira) * Store a hash in a NormalizedUri (@mpickering) diff --git a/haskell-lsp-types/ChangeLog.md b/haskell-lsp-types/ChangeLog.md index fd543ce84..2c4a3b6a8 100644 --- a/haskell-lsp-types/ChangeLog.md +++ b/haskell-lsp-types/ChangeLog.md @@ -9,10 +9,10 @@ * Fix language server example * Correctly fix the problem with '$/' notifications * Add azure ci -* Force utf8 encoding when writing vfs temp files ## 0.20.0.0 +* Force utf8 encoding when writing vfs temp files * Don't log errors for '$/' notifications (@jinwoo) * Force utf8 encoding when writing vfs temp files (@jneira) * Store a hash in a NormalizedUri (@mpickering)