This repository was archived by the owner on Oct 7, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +58
-16
lines changed Expand file tree Collapse file tree 6 files changed +58
-16
lines changed Original file line number Diff line number Diff line change @@ -22,9 +22,9 @@ defaults: &defaults
22
22
23
23
- restore_cache :
24
24
keys :
25
- - stack-cache-10 -{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "stack-build.txt" }}-{{ checksum "all-cabal.txt" }}
26
- - stack-cache-10 -{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "stack-build.txt" }}
27
- - stack-cache-10 -{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "resolver.txt" }}
25
+ - stack-cache-11 -{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "stack-build.txt" }}-{{ checksum "all-cabal.txt" }}
26
+ - stack-cache-11 -{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "stack-build.txt" }}
27
+ - stack-cache-11 -{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "resolver.txt" }}
28
28
29
29
- run :
30
30
name : Stack setup
@@ -55,7 +55,7 @@ defaults: &defaults
55
55
command : rm -fr ~/.cache/cabal-helper
56
56
57
57
- save_cache :
58
- key : stack-cache-10 -{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "resolver.txt" }}
58
+ key : stack-cache-11 -{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "resolver.txt" }}
59
59
paths :
60
60
- ~/.stack
61
61
- ~/.cache
@@ -77,7 +77,7 @@ defaults: &defaults
77
77
path : test-logs
78
78
79
79
- save_cache :
80
- key : stack-cache-10 -{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "stack-build.txt" }}
80
+ key : stack-cache-11 -{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "stack-build.txt" }}
81
81
paths :
82
82
- ~/.stack
83
83
- ~/.cache
@@ -90,7 +90,7 @@ defaults: &defaults
90
90
- ~/build/submodules/cabal-helper/.stack-work
91
91
92
92
- save_cache :
93
- key : stack-cache-10 -{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "stack-build.txt" }}-{{ checksum "all-cabal.txt" }}
93
+ key : stack-cache-11 -{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "stack-build.txt" }}-{{ checksum "all-cabal.txt" }}
94
94
paths :
95
95
- ~/.stack
96
96
- ~/.cache
Original file line number Diff line number Diff line change
1
+ # 0.3.0.0
2
+
3
+ - LSP mode is now the default, and the ` --lsp ` flag has no effect
4
+ - The ` --json ` flag can be used for JSON transport
5
+ - HIE now warns you if there is mismatch between the HIE GHC verison and the project GHC version
6
+ - Add Liquid Haskell support
7
+ - Add support for hierarchical document symbols
8
+ - Add many new types of code actions
9
+ - Typed holes
10
+ - HaRe refactoring
11
+ - Misspelled variables
12
+ - Missing top-level signatures
13
+ - Prefix unused terms with ` _ `
14
+ - Case splitting
15
+ - Suggested pragmas and language extensions
16
+ - The parsed output from a module is now cached
17
+ - Some features are now available without the need for the module to typecheck first
18
+ - Improve code completion
19
+ - Suggests modules that can be imported
20
+ - Suggests GHC extensions
21
+ - Recognizes when completing a type or expression
22
+ - Provides snippets for arguments to functions
23
+ - Add the ability to set an explicit hoogle database
24
+
25
+ Thanks to the contributors for this release:
26
+ - @Avi-D-coder
27
+ - @Gurkenglas
28
+ - @Technix
29
+ - @alanz
30
+ - @apeyroux
31
+ - @bbarker
32
+ - @bubba
33
+ - @cblp
34
+ - @cronokirby
35
+ - @expipiplus1
36
+ - @jhrcek
37
+ - @jkachmar
38
+ - @lorenzo
39
+ - @m13m
40
+ - @meck
41
+ - @mpilgrem
42
+ - @waddlaw
43
+
1
44
# 0.2.2.0
2
45
3
46
Add more code actions for various diagnostics:
Original file line number Diff line number Diff line change 1
1
name : haskell-ide-engine
2
- version : 0.2.2 .0
2
+ version : 0.3.0 .0
3
3
synopsis : Provide a common engine to power any Haskell IDE
4
4
description : Please see README.md
5
5
homepage : http://github.com/githubuser/haskell-ide-engine#readme
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ extra-deps:
8
8
- ./submodules/HaRe
9
9
- ./submodules/ghc-mod
10
10
- ./submodules/ghc-mod/core
11
+
11
12
- base-compat-0.9.3
12
13
- cabal-helper-0.8.1.0@rev:0
13
14
- cabal-plan-0.3.0.0
Original file line number Diff line number Diff line change 1
- resolver : lts-12.16 # LTS 12.15 is first to support GHC 8.4.4
1
+ resolver : lts-12.17 # LTS 12.15 is first to support GHC 8.4.4
2
2
packages :
3
3
- .
4
4
- hie-plugin-api
@@ -8,6 +8,7 @@ extra-deps:
8
8
- ./submodules/HaRe
9
9
- ./submodules/ghc-mod
10
10
- ./submodules/ghc-mod/core
11
+
11
12
- base-compat-0.9.3
12
13
- cabal-helper-0.8.1.0@rev:0
13
14
- cabal-plan-0.3.0.0
Original file line number Diff line number Diff line change 1
- resolver : nightly-2018-09-28 # Last GHC 8.4.3
1
+ resolver : lts-12.17 # GHC 8.4.4
2
2
packages :
3
3
- .
4
4
- hie-plugin-api
@@ -9,22 +9,19 @@ extra-deps:
9
9
- ./submodules/ghc-mod
10
10
- ./submodules/ghc-mod/core
11
11
12
- - aeson-1.3.1.1
13
12
- base-compat-0.9.3
14
- - base-orphans-0.7
15
13
- cabal-helper-0.8.1.0@rev:0
16
14
- cabal-plan-0.3.0.0
17
15
- constrained-dynamic-0.1.0.0
18
- - ekg-json-0.1.0.6
19
- - ekg-wai-0.1.0.3
16
+ - ghc-exactprint-0.5.8.2
20
17
- haddock-api-2.20.0
18
+ - haddock-library-1.6.0
19
+ - haskell-lsp-0.8.0.1
20
+ - haskell-lsp-types-0.8.0.1
21
21
- hsimport-0.8.6
22
22
- lsp-test-0.4.0.0
23
- - monad-memo-0.4.1
24
- - semigroupoids-5.2.2
25
23
- syz-0.2.0.0
26
24
- temporary-1.2.1.1
27
- - yaml-0.8.32
28
25
29
26
flags :
30
27
haskell-ide-engine :
You can’t perform that action at this time.
0 commit comments