Skip to content

Commit 2aacc5c

Browse files
committed
Prepare for 0.17.0.0
Also fix a warning
1 parent 8ff9fda commit 2aacc5c

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

ChangeLog.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# Revision history for haskell-lsp
22

3-
## 0.17.0.0 -- unreleased
3+
## 0.17.0.0 -- 2019-10-18
44

5-
* Update progress reporting to match the LSP 3.15 specification.
5+
* Update progress reporting to match the LSP 3.15 specification (@cocreature)
6+
* Fix progress cancellation action being retained (@mpickering)
7+
* Respect both codeActionProvider and codeActionHandler in server
8+
capabilities (@fendor)
9+
* Ensure ResponseMessage has either a result or an error (@cocreature)
610

711
## 0.16.0.0 -- 2019-09-07
812

haskell-lsp-types/ChangeLog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Revision history for haskell-lsp-types
22

3+
## 0.17.0.0 -- 2019-10-18
4+
5+
* Update progress reporting to match the LSP 3.15 specification (@cocreature)
6+
* Ensure ResponseMessage has either a result or an error (@cocreature)
7+
38
## 0.16.0.0 -- 2019-09-07
49

510
* Add support for CodeActionOptions (@thomasjm)

haskell-lsp-types/haskell-lsp-types.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: haskell-lsp-types
2-
version: 0.16.0.0
2+
version: 0.17.0.0
33
synopsis: Haskell library for the Microsoft Language Server Protocol, data types
44

55
description: An implementation of the types to allow language implementors to

haskell-lsp-types/src/Language/Haskell/LSP/Types/CodeAction.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
module Language.Haskell.LSP.Types.CodeAction where
55

66
import Control.Applicative
7-
import qualified Data.Aeson as A
87
import Data.Aeson.TH
98
import Data.Aeson.Types
109
import Data.Text ( Text )

haskell-lsp.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: haskell-lsp
2-
version: 0.16.0.0
2+
version: 0.17.0.0
33
synopsis: Haskell library for the Microsoft Language Server Protocol
44

55
description: An implementation of the types, and basic message server to
@@ -46,7 +46,7 @@ library
4646
, filepath
4747
, hslogger
4848
, hashable
49-
, haskell-lsp-types == 0.16.*
49+
, haskell-lsp-types == 0.17.*
5050
, lens >= 4.15.2
5151
, mtl
5252
, network-uri

0 commit comments

Comments
 (0)