From dfd9bd33b435dde8c342b0cf2f15c89f03c7ff4c Mon Sep 17 00:00:00 2001 From: Pepe Iborra Date: Mon, 8 Feb 2021 13:08:48 +0000 Subject: [PATCH] Prepare ghcide v0.7.4 release --- ghcide/CHANGELOG.md | 12 +++++++++++- ghcide/bench/config.yaml | 1 + ghcide/ghcide.cabal | 2 +- ghcide/session-loader/Development/IDE/Session.hs | 1 + 4 files changed, 14 insertions(+), 2 deletions(-) diff --git a/ghcide/CHANGELOG.md b/ghcide/CHANGELOG.md index ebc314ddfa..cd47b13e38 100644 --- a/ghcide/CHANGELOG.md +++ b/ghcide/CHANGELOG.md @@ -1,4 +1,14 @@ -### 0.7.3 (2021-02-..) +### 0.7.4 (2021-02-08) +* Support for references via hiedb (#704) - wz1000 +* Fix space leak on cradle reloads (#1316) - Pepe Iborra +* Trigger extending import only when the item is not in scope (#1309) - Potato Hatsue +* Don't extend the import list with child if the parent has already been imported as (..) (#1302) - Potato Hatsue +* FindImports typo (minor) (#1291) - Andy +* Reenable auto extend imports and drop snippets for infix completions (#1266) - Pepe Iborra +* ghcide: Implements a CodeAction to disambiguate ambiguous symbols (#1264) - Hiromi Ishii +* Restore code actions order (#1273) - Pepe Iborra + +### 0.7.3 (2021-02-04) * Add custom cache layer for session loading (#1197) - (fendor) * Remove invalid exports (#1193) - (Kostas Dermentzis) * Use exact print to suggestExtendImport - (Potato Hatsue) diff --git a/ghcide/bench/config.yaml b/ghcide/bench/config.yaml index a174b641c0..08b29e6937 100644 --- a/ghcide/bench/config.yaml +++ b/ghcide/bench/config.yaml @@ -65,6 +65,7 @@ versions: # - ghcide-v0.7.1 # - ghcide-v0.7.2 # - ghcide-v0.7.3 +# - ghcide-v0.7.4 - upstream: origin/master - HEAD diff --git a/ghcide/ghcide.cabal b/ghcide/ghcide.cabal index 559efc2dc8..2c07a5ec58 100644 --- a/ghcide/ghcide.cabal +++ b/ghcide/ghcide.cabal @@ -2,7 +2,7 @@ cabal-version: 1.20 build-type: Simple category: Development name: ghcide -version: 0.7.3.0 +version: 0.7.4.0 license: Apache-2.0 license-file: LICENSE author: Digital Asset and Ghcide contributors diff --git a/ghcide/session-loader/Development/IDE/Session.hs b/ghcide/session-loader/Development/IDE/Session.hs index fc4f0553d5..f9e3f40125 100644 --- a/ghcide/session-loader/Development/IDE/Session.hs +++ b/ghcide/session-loader/Development/IDE/Session.hs @@ -7,6 +7,7 @@ The logic for setting up a ghcide session by tapping into hie-bios. -} module Development.IDE.Session (SessionLoadingOptions(..) + ,CacheDirs(..) ,defaultLoadingOptions ,loadSession ,loadSessionWithOptions