Skip to content

Commit

Permalink
Merge pull request #1207 from haskell/prepare-ghcide-v071
Browse files Browse the repository at this point in the history
Prepare ghcide release v0.7.1
  • Loading branch information
jneira authored Jan 14, 2021
2 parents cbd08c6 + 45fa305 commit 58cd76a
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 1 deletion.
15 changes: 15 additions & 0 deletions ghcide/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
### 0.7.1 (2020-01-13)

* Fix sticky diagnostics bug (#1188) - (Pepe Iborra)
* Use completionSnippetsOn flag (#1195) - (Yuya Kono)
* Update tested-with GHC in cabal config - (jneira)
* Do not disable parallel GC by default (#1190) - (Pepe Iborra)
* Fix module outline becoming stale after switching branches (#1189) - (Pepe Iborra)
* Make adding missing constraint work in presence of 'forall' (fixes #1164) (#1177) - (Jan Hrcek)
* Bump haskell-lsp to 0.23 (#1146) - (Potato Hatsue)
* Fix #723 (Instance declarations in hs-boot files result in GHC errors) (#781) - (Ben Simms)
* Also suggest importing methods without parent class (#766) - (Thomas Winant)
* Update links to issues/PRs in ghcide tests. (#1142) - (Peter Wicks Stringfield)
* fix suggestAddTypeAnnotation regex (#760) - (Kostas Dermentzis)

### 0.7.0 (2020-01-03)

* Ghcide now loads HLS plugins internally - (Pepe Iborra)
* Retry a failed cradle if the cradle descriptor changes (#762) - (Pepe Iborra)
* Fix extend imports regression (#769) - (Pepe Iborra)
* Perform memory measurement on SIGUSR1 (#761) - (Pepe Iborra)
Expand Down
2 changes: 2 additions & 0 deletions ghcide/bench/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,7 @@ versions:
# - v0.4.0
# - v0.5.0
# - v0.6.0
# - v0.7.0
# - v0.7.1
- upstream: origin/master
- HEAD
2 changes: 1 addition & 1 deletion ghcide/ghcide.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cabal-version: 1.20
build-type: Simple
category: Development
name: ghcide
version: 0.7.0.0
version: 0.7.1.0
license: Apache-2.0
license-file: LICENSE
author: Digital Asset and Ghcide contributors
Expand Down
26 changes: 26 additions & 0 deletions ghcide/src/Development/IDE/Core/Rules.hs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@
-- using the "Shaker" abstraction layer for in-memory use.
--
module Development.IDE.Core.Rules(
-- * Types
IdeState, GetDependencies(..), GetParsedModule(..), TransitiveDependencies(..),
Priority(..), GhcSessionIO(..), GetClientSettings(..),
-- * Functions
priorityTypeCheck,
priorityGenerateCore,
priorityFilesOfInterest,
Expand All @@ -28,6 +30,30 @@ module Development.IDE.Core.Rules(
getDependencies,
getParsedModule,
getClientConfigAction,
-- * Rules
CompiledLinkables(..),
IsHiFileStable(..),
getParsedModuleRule,
getLocatedImportsRule,
getDependencyInformationRule,
reportImportCyclesRule,
getDependenciesRule,
typeCheckRule,
getDocMapRule,
loadGhcSession,
getModIfaceFromDiskRule,
getModIfaceRule,
getModIfaceWithoutLinkableRule,
getModSummaryRule,
isHiFileStableRule,
getModuleGraphRule,
knownFilesRule,
getClientSettingsRule,
getHieAstsRule,
getBindingsRule,
needsCompilationRule,
generateCoreRule,
getImportMapRule
) where

import Fingerprint
Expand Down

0 comments on commit 58cd76a

Please sign in to comment.