Skip to content
This repository was archived by the owner on Oct 7, 2020. It is now read-only.

Commit 50cb42f

Browse files
authored
Merge pull request #1227 from alanz/prepare-0.9.0.0
Prepare for 0.9.0.0 release
2 parents b5e7c2f + 57c237e commit 50cb42f

File tree

3 files changed

+44
-2
lines changed

3 files changed

+44
-2
lines changed

Changelog.md

+42
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,45 @@
1+
# 0.9.0.0
2+
3+
- GHC 8.6.5 preliminary support added via the nightly build (@alanz)
4+
- Resolver bumped, LTS 13.19 for GHC 8.6.4 (@alanz)
5+
- Add `diagnosticsOnChange` config parameter, default `True`
6+
(preserving prior hie behaviour). Setting it `False` only generates
7+
diagnostics on file save. ([#1164](https://github.com/haskell/haskell-ide-engine/pull/1164), @mpickering/@lorenzo)
8+
- The `Hsimport` plugin now formats the resulting change using the
9+
formatter configured for hie. ([#1167](https://github.com/haskell/haskell-ide-engine/pull/1167),@fendor)
10+
- Actually enable type definition requests, if supported by the client
11+
(e.g. vscode). ([#1169](https://github.com/haskell/haskell-ide-engine/pull/1169)/@fendor, [#1172](https://github.com/haskell/haskell-ide-engine/pull/1172)/@bubba)
12+
- Use LSP MarkupContent for generated documentation ([#1181](https://github.com/haskell/haskell-ide-engine/pull/1181), @alanz)
13+
- remove installation of Cabal by cabal ([#1184](https://github.com/haskell/haskell-ide-engine/pull/1184), @power-fungus)
14+
- Add EmptyDataDecls to available pragmas, for generating code actions
15+
to insert if needed. ([#1187](https://github.com/haskell/haskell-ide-engine/pull/1187),@fendor)
16+
- Make sure the end of formatted text is properly indicated for marked
17+
up documentation ([#1189](https://github.com/haskell/haskell-ide-engine/pull/1189), @alanz)
18+
- Fix some of the tests with cabal new-build ([#1194](https://github.com/haskell/haskell-ide-engine/pull/1194), @michaelpj)
19+
- Update build-tool-depends for func-test ([#1198](https://github.com/haskell/haskell-ide-engine/pull/1198), @bubba)
20+
- Fix version of lsp-test so `cabal new-build` works ([#1211](https://github.com/haskell/haskell-ide-engine/pull/1211), @power-fungus)
21+
- Bump hlint to 2.1.17 ([#1213](https://github.com/haskell/haskell-ide-engine/pull/1213), @alanz)
22+
- Use cabal helper that searches with exe extension on windows ([#1217](https://github.com/haskell/haskell-ide-engine/pull/1217), @alanz)
23+
24+
- Stability improvements
25+
- Avoid crash in case of nonsensical hoogle db ([#1174](https://github.com/haskell/haskell-ide-engine/pull/1174), @fendor)
26+
- Prevent hie crash if apply-refact crashes ([#1220](https://github.com/haskell/haskell-ide-engine/pull/1220), @Hogeyama)
27+
28+
- Documentation improvements
29+
- Improve code documentation about formatters ([#1165](https://github.com/haskell/haskell-ide-engine/pull/1165),@fendor)
30+
- Add code documentation for the Hoogle plugin ([#1173](https://github.com/haskell/haskell-ide-engine/pull/1173),@fendor)
31+
- Change 'build-docs' to 'build-doc' in README ([#1185](https://github.com/haskell/haskell-ide-engine/pull/1185), @ajeetdsouza)
32+
- README Nix - replace old.postFixup -> postFixup ([#1193](https://github.com/haskell/haskell-ide-engine/pull/1193), @backuitist)
33+
- Expand documentation on the build system ([#1200](https://github.com/haskell/haskell-ide-engine/pull/1200), @power-fungus)
34+
- Fixed a typo. ([#1212](https://github.com/haskell/haskell-ide-engine/pull/1212), @rashadg1030)
35+
- Add documentation about building hie with profiling
36+
enabled. ([#1225](https://github.com/haskell/haskell-ide-engine/pull/1225), @skress)
37+
- Add Documentation for Pragmas Plugin ([#1222](https://github.com/haskell/haskell-ide-engine/pull/1222), @fendor)
38+
39+
- Build system improvements
40+
- Further improvements and simplification of the `./install.hs`
41+
build system ([#1168](https://github.com/haskell/haskell-ide-engine/pull/1168), @power-fungus)
42+
143
# 0.8.0.0
244

345
- GHC 8.6.4 support added.

haskell-ide-engine.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: haskell-ide-engine
2-
version: 0.8.0.0
2+
version: 0.9.0.0
33
synopsis: Provide a common engine to power any Haskell IDE
44
description: Please see README.md
55
homepage: http://github.com/githubuser/haskell-ide-engine#readme

hie-plugin-api/hie-plugin-api.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: hie-plugin-api
2-
version: 0.6.0.0
2+
version: 0.9.0.0
33
synopsis: Haskell IDE API for plugin communication
44
license: BSD3
55
license-file: LICENSE

0 commit comments

Comments
 (0)