diff --git a/Changelog.md b/Changelog.md index e90ba363..e540ac5d 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,34 @@ +## 1.4 + +NOTE: haskell-ide-engine is in transition, the new home for it will be +[haskell-language-server](https://github.com/haskell/haskell-language-server), +which does not currently have feature parity with `hie`. +Once that hurdle is crossed, the main emphasis will be there, and +`hie` will eventually be deprecated. + +## In this version + +- cabal to 2020-05-02T10:11:15Z +- stack-8.8.3 to lts-15.10 +- stack to nightly-2020-05-01 + +## Changes + +- Bump resolvers +([#1757](https://github.com/haskell/haskell-ide-engine/pull/1757) by @alanz) +- Move finding the package for a filepath +([#1750](https://github.com/haskell/haskell-ide-engine/pull/1750) by @fendor) +- Update Sublime Text HIE command +([#1742](https://github.com/haskell/haskell-ide-engine/pull/1742) by @ssanj) +- Use installed ghc in stack linux builds +([#1737](https://github.com/haskell/haskell-ide-engine/pull/1737) by @jneira) +- Strip RTS flags, since we cant honor them +([#1736](https://github.com/haskell/haskell-ide-engine/pull/1736) by @fendor) +- Support for ghc-8.8.3 +([#1697](https://github.com/haskell/haskell-ide-engine/pull/1697) by @jneira) +- Haddock source file names may use either dot or dash as separator +([#1723](https://github.com/haskell/haskell-ide-engine/pull/1723) by @wz1000) + ## 1.3 NOTE: haskell-ide-engine is in transition, the new home for it will be diff --git a/haskell-ide-engine.cabal b/haskell-ide-engine.cabal index 3fed6cc3..ac18bcdc 100644 --- a/haskell-ide-engine.cabal +++ b/haskell-ide-engine.cabal @@ -1,5 +1,5 @@ name: haskell-ide-engine -version: 1.3 +version: 1.4 synopsis: Provide a common engine to power any Haskell IDE description: Please see README.md homepage: http://github.com/githubuser/haskell-ide-engine#readme @@ -76,7 +76,7 @@ library , haskell-lsp == 0.20.* , haskell-lsp-types == 0.20.* , haskell-src-exts >= 1.22 - , hie-plugin-api >= 1.3 + , hie-plugin-api >= 1.4 , hoogle >= 5.0.13 , hsimport , hslogger diff --git a/hie-plugin-api/hie-plugin-api.cabal b/hie-plugin-api/hie-plugin-api.cabal index dfdf68cb..bca7f9c2 100644 --- a/hie-plugin-api/hie-plugin-api.cabal +++ b/hie-plugin-api/hie-plugin-api.cabal @@ -1,5 +1,5 @@ name: hie-plugin-api -version: 1.3 +version: 1.4 synopsis: Haskell IDE API for plugin communication description: Please see README.md license: BSD3