hsdev 0.1.2.1 → 0.1.2.2
raw patch · 2 files changed
+3/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- hsdev.cabal +1/−1
- src/HsDev/Database.hs +2/−1
hsdev.cabal view
@@ -2,7 +2,7 @@ -- see http://haskell.org/cabal/users-guide/ name: hsdev -version: 0.1.2.1 +version: 0.1.2.2 synopsis: Haskell development library and tool with support of autocompletion, symbol info, go to declaration, find references etc. description: Haskell development library and tool with support of autocompletion, symbol info, go to declaration, find references, hayoo search etc.
src/HsDev/Database.hs view
@@ -122,7 +122,8 @@ -- | Standalone database standaloneDB :: Database -> Database -standaloneDB db = filterDB (noProject . moduleId) (const False) db where +standaloneDB db = filterDB (check' . moduleId) (const False) db where + check' m = noProject m && byFile m noProject m = all (not . flip inProject m) ps ps = M.elems $ databaseProjects db