hoogle 4.2.31 → 4.2.32
raw patch · 3 files changed
+9/−5 lines, 3 filesdep ~haskell-src-exts
Dependency ranges changed: haskell-src-exts
Files
- CHANGES.txt +2/−0
- hoogle.cabal +4/−4
- src/General/Web.hs +3/−1
CHANGES.txt view
@@ -1,5 +1,7 @@ Changelog for Hoogle +4.2.32+ Allow haskell-src-exts-1.15 4.2.31 #61, support conduit-1.1 4.2.30
hoogle.cabal view
@@ -1,7 +1,7 @@ cabal-version: >= 1.10 build-type: Simple name: hoogle-version: 4.2.31+version: 4.2.32 license: BSD3 license-file: docs/LICENSE category: Development@@ -15,7 +15,7 @@ or by approximate type signature. homepage: http://www.haskell.org/hoogle/ bug-reports: https://github.com/ndmitchell/hoogle/issues-tested-with: GHC==7.6.3, GHC==7.4.2+tested-with: GHC==7.8.2, GHC==7.6.3, GHC==7.4.2 extra-source-files: README.txt CHANGES.txt@@ -59,7 +59,7 @@ vector >= 0.9, vector-algorithms >= 0.6, QuickCheck,- haskell-src-exts >= 1.14 && < 1.15+ haskell-src-exts >= 1.14 && < 1.16 if !os(mingw32) build-depends: unix@@ -153,7 +153,7 @@ Cabal >= 1.8, shake >= 0.11, QuickCheck,- haskell-src-exts >= 1.14 && < 1.15+ haskell-src-exts >= 1.14 && < 1.16 if !os(mingw32) build-depends: unix
src/General/Web.hs view
@@ -30,8 +30,10 @@ import Blaze.ByteString.Builder(toLazyByteString) import Data.Conduit.List(consume)-import Data.Conduit(($$),Flush,Flush(Chunk))+import Data.Conduit(($$),Flush(Chunk))+#if !MIN_VERSION_wai(2, 0, 0) import Control.Monad.Trans.Resource (runResourceT)+#endif type Args = [(String, String)]