File tree 4 files changed +14
-2
lines changed
session-loader/Development/IDE
4 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 1
- ### 0.7.3 (2021-02-..)
1
+ ### 0.7.4 (2021-02-08)
2
+ * Support for references via hiedb (#704 ) - wz1000
3
+ * Fix space leak on cradle reloads (#1316 ) - Pepe Iborra
4
+ * Trigger extending import only when the item is not in scope (#1309 ) - Potato Hatsue
5
+ * Don't extend the import list with child if the parent has already been imported as (..) (#1302 ) - Potato Hatsue
6
+ * FindImports typo (minor) (#1291 ) - Andy
7
+ * Reenable auto extend imports and drop snippets for infix completions (#1266 ) - Pepe Iborra
8
+ * ghcide: Implements a CodeAction to disambiguate ambiguous symbols (#1264 ) - Hiromi Ishii
9
+ * Restore code actions order (#1273 ) - Pepe Iborra
10
+
11
+ ### 0.7.3 (2021-02-04)
2
12
* Add custom cache layer for session loading (#1197 ) - (fendor)
3
13
* Remove invalid exports (#1193 ) - (Kostas Dermentzis)
4
14
* Use exact print to suggestExtendImport - (Potato Hatsue)
Original file line number Diff line number Diff line change @@ -65,6 +65,7 @@ versions:
65
65
# - ghcide-v0.7.1
66
66
# - ghcide-v0.7.2
67
67
# - ghcide-v0.7.3
68
+ # - ghcide-v0.7.4
68
69
- upstream : origin/master
69
70
- HEAD
70
71
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ cabal-version: 1.20
2
2
build-type : Simple
3
3
category : Development
4
4
name : ghcide
5
- version : 0.7.3 .0
5
+ version : 0.7.4 .0
6
6
license : Apache-2.0
7
7
license-file : LICENSE
8
8
author : Digital Asset and Ghcide contributors
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ The logic for setting up a ghcide session by tapping into hie-bios.
7
7
-}
8
8
module Development.IDE.Session
9
9
(SessionLoadingOptions (.. )
10
+ ,CacheDirs (.. )
10
11
,defaultLoadingOptions
11
12
,loadSession
12
13
,loadSessionWithOptions
You can’t perform that action at this time.
0 commit comments