packages feed

hsdev 0.3.3.5 → 0.3.3.6

raw patch · 2 files changed

+2/−2 lines, 2 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- HsDev.Symbols.Types: inspectedKey :: forall k_a2Duc t_a2Dud a_a2Due k_a2GJz. Lens (Inspected k_a2Duc t_a2Dud a_a2Due) (Inspected k_a2GJz t_a2Dud a_a2Due) k_a2Duc k_a2GJz
+ HsDev.Symbols.Types: inspectedKey :: forall k_a2Dtz t_a2DtA a_a2DtB k_a2GIW. Lens (Inspected k_a2Dtz t_a2DtA a_a2DtB) (Inspected k_a2GIW t_a2DtA a_a2DtB) k_a2Dtz k_a2GIW
- HsDev.Symbols.Types: inspection :: forall k_a2Duc t_a2Dud a_a2Due. Lens' (Inspected k_a2Duc t_a2Dud a_a2Due) Inspection
+ HsDev.Symbols.Types: inspection :: forall k_a2Dtz t_a2DtA a_a2DtB. Lens' (Inspected k_a2Dtz t_a2DtA a_a2DtB) Inspection
- HsDev.Symbols.Types: inspectionResult :: forall k_a2Duc t_a2Dud a_a2Due a_a2GJA. Lens (Inspected k_a2Duc t_a2Dud a_a2Due) (Inspected k_a2Duc t_a2Dud a_a2GJA) (Either HsDevError a_a2Due) (Either HsDevError a_a2GJA)
+ HsDev.Symbols.Types: inspectionResult :: forall k_a2Dtz t_a2DtA a_a2DtB a_a2GIX. Lens (Inspected k_a2Dtz t_a2DtA a_a2DtB) (Inspected k_a2Dtz t_a2DtA a_a2GIX) (Either HsDevError a_a2DtB) (Either HsDevError a_a2GIX)
- HsDev.Symbols.Types: inspectionTags :: forall k_a2Duc t_a2Dud a_a2Due t_a2GJB. Lens (Inspected k_a2Duc t_a2Dud a_a2Due) (Inspected k_a2Duc t_a2GJB a_a2Due) (Set t_a2Dud) (Set t_a2GJB)
+ HsDev.Symbols.Types: inspectionTags :: forall k_a2Dtz t_a2DtA a_a2DtB t_a2GIY. Lens (Inspected k_a2Dtz t_a2DtA a_a2DtB) (Inspected k_a2Dtz t_a2GIY a_a2DtB) (Set t_a2DtA) (Set t_a2GIY)
- HsDev.Symbols.Types: scopeQualifier :: forall a_a2Duf. Lens' (Scoped a_a2Duf) (Maybe Text)
+ HsDev.Symbols.Types: scopeQualifier :: forall a_a2DtC. Lens' (Scoped a_a2DtC) (Maybe Text)
- HsDev.Symbols.Types: scoped :: forall a_a2Duf a_a2GEr. Lens (Scoped a_a2Duf) (Scoped a_a2GEr) a_a2Duf a_a2GEr
+ HsDev.Symbols.Types: scoped :: forall a_a2DtC a_a2GDO. Lens (Scoped a_a2DtC) (Scoped a_a2GDO) a_a2DtC a_a2GDO

Files

hsdev.cabal view
@@ -1,5 +1,5 @@ name:                hsdev
-version:             0.3.3.5
+version:             0.3.3.6
 synopsis:            Haskell development library
 description:
   Haskell development library and tool with support of autocompletion, symbol info, go to declaration, find references, hayoo search etc.
src/HsDev/Tools/Ghc/Repl.hs view
@@ -30,7 +30,7 @@ 
 -- | Default interpreter modules
 preludeModules :: [String]
-preludeModules = ["Prelude", "Data.List", "Control.Monad", "HsDev.Tools.Ghc.Prelude"]
+preludeModules = ["Prelude", "Data.List", "Control.Monad"]
 
 -- | Evaluate expression
 evaluate :: GhcMonad m => String -> m String