From 2124f862adf3ff7a724b36880269e64b1fa63769 Mon Sep 17 00:00:00 2001 From: Pepe Iborra Date: Sun, 14 Feb 2021 14:00:57 +0000 Subject: [PATCH 1/2] Expose more rule definitions --- ghcide/src/Development/IDE/Core/Rules.hs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ghcide/src/Development/IDE/Core/Rules.hs b/ghcide/src/Development/IDE/Core/Rules.hs index bfb2873850..3344d50b7c 100644 --- a/ghcide/src/Development/IDE/Core/Rules.hs +++ b/ghcide/src/Development/IDE/Core/Rules.hs @@ -57,7 +57,11 @@ module Development.IDE.Core.Rules( getBindingsRule, needsCompilationRule, generateCoreRule, - getImportMapRule + getImportMapRule, + regenerateHiFile, + ghcSessionDepsDefinition, + getParsedModuleDefinition, + typeCheckRuleDefinition, ) where import Fingerprint From 6f66bdc84971414e977b49c2815a4b1f20909795 Mon Sep 17 00:00:00 2001 From: Pepe Iborra Date: Sun, 14 Feb 2021 14:14:04 +0000 Subject: [PATCH 2/2] Update release notes --- ghcide/CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/ghcide/CHANGELOG.md b/ghcide/CHANGELOG.md index 41d1d7c2e1..c0170e86cb 100644 --- a/ghcide/CHANGELOG.md +++ b/ghcide/CHANGELOG.md @@ -1,5 +1,14 @@ ### 0.7.5 (2021-02-??) +* Tone down some logInfos to logDebug (#1385) - Pepe Iborra +* Show window message when auto extending import lists (#1371) - Potato Hatsue +* Catch GHC errors in listing module names (#1367) - Potato Hatsue +* Upgrade to lsp-1.0 (#1284) - wz1000 * Added Development.IDE.Main (#1338) - Pepe Iborra +* Fix completion snippets on DuplicateRecordFields (#1360) - Potato Hatsue +* Add code action for hiding shadowed identifiers from imports (#1322) - Potato Hatsue +* Make find-definition work better with multi-components (#1357) - wz1000 +* Index files on first open (#1358) - wz1000 +* Fix code actions regression (#1349) - Pepe Iborra ### 0.7.4 (2021-02-08) * Support for references via hiedb (#704) - wz1000