Skip to content

Commit

Permalink
Prepare for 0.17.0.0
Browse files Browse the repository at this point in the history
Also fix a warning
  • Loading branch information
lukel97 committed Oct 18, 2019
1 parent 8ff9fda commit 2aacc5c
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
8 changes: 6 additions & 2 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Revision history for haskell-lsp

## 0.17.0.0 -- unreleased
## 0.17.0.0 -- 2019-10-18

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

## 0.16.0.0 -- 2019-09-07

Expand Down
5 changes: 5 additions & 0 deletions haskell-lsp-types/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Revision history for haskell-lsp-types

## 0.17.0.0 -- 2019-10-18

* Update progress reporting to match the LSP 3.15 specification (@cocreature)
* Ensure ResponseMessage has either a result or an error (@cocreature)

## 0.16.0.0 -- 2019-09-07

* Add support for CodeActionOptions (@thomasjm)
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.16.0.0
version: 0.17.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
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
module Language.Haskell.LSP.Types.CodeAction where

import Control.Applicative
import qualified Data.Aeson as A
import Data.Aeson.TH
import Data.Aeson.Types
import Data.Text ( Text )
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.16.0.0
version: 0.17.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.16.*
, haskell-lsp-types == 0.17.*
, lens >= 4.15.2
, mtl
, network-uri
Expand Down

0 comments on commit 2aacc5c

Please sign in to comment.