hoogle 4.2.41 → 4.2.42
raw patch · 4 files changed
+6/−4 lines, 4 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Hoogle: columnNo :: ParseError -> Int
- Hoogle: docs :: Result -> TagStr
- Hoogle: errorMessage :: ParseError -> String
- Hoogle: instance Eq Result
- Hoogle: instance Monoid Database
- Hoogle: instance NFData Database
- Hoogle: instance Show Database
- Hoogle: instance Show Result
- Hoogle: lineNo :: ParseError -> Int
- Hoogle: locations :: Result -> [(URL, [(URL, String)])]
- Hoogle: parseInput :: ParseError -> TagStr
- Hoogle: self :: Result -> TagStr
+ Hoogle: [columnNo] :: ParseError -> Int
+ Hoogle: [docs] :: Result -> TagStr
+ Hoogle: [errorMessage] :: ParseError -> String
+ Hoogle: [lineNo] :: ParseError -> Int
+ Hoogle: [locations] :: Result -> [(URL, [(URL, String)])]
+ Hoogle: [parseInput] :: ParseError -> TagStr
+ Hoogle: [self] :: Result -> TagStr
+ Hoogle: instance Control.DeepSeq.NFData Hoogle.Database
+ Hoogle: instance GHC.Base.Monoid Hoogle.Database
+ Hoogle: instance GHC.Classes.Eq Hoogle.Result
+ Hoogle: instance GHC.Show.Show Hoogle.Database
+ Hoogle: instance GHC.Show.Show Hoogle.Result
Files
- CHANGES.txt +2/−0
- README.md +2/−2
- hoogle.cabal +1/−1
- src/Recipe/All.hs +1/−1
CHANGES.txt view
@@ -1,5 +1,7 @@ Changelog for Hoogle +4.2.42+ #24, don't use code.galois.com 4.2.41 #115, require warp-2.1 or above 4.2.40
README.md view
@@ -15,8 +15,8 @@ * **Online**, with the web interface at http://haskell.org/hoogle * **In [IRC](http://haskell.org/haskellwiki/Haskell_IRC_channel)**, using the [Lambdabot](http://haskell.org/haskellwiki/Lambdabot) plugin with `@hoogle` and `@hoogle+`-* **[Installed locally](https://github.com/ndmitchell/hoogle/blob/master/docs/Local-Install.md)**, with either a command line or in a browser-* **[As a developer](https://github.com/ndmitchell/hoogle/blob/master/docs/Developers.md)**, through Haskell or JSON APIs.+* **[Installed locally](docs/Local-Install.md)**, with either a command line or in a browser+* **[As a developer](docs/Developers.md)**, through Haskell or JSON APIs. # Searches
hoogle.cabal view
@@ -1,7 +1,7 @@ cabal-version: >= 1.10 build-type: Simple name: hoogle-version: 4.2.41+version: 4.2.42 license: BSD3 license-file: docs/LICENSE category: Development
src/Recipe/All.hs view
@@ -181,7 +181,7 @@ urls :: C.CmdLine -> [(FilePath, URL)] urls Data{..} = let (*) = (,) in ["keyword.htm" * "http://wiki.haskell.org/Keywords"- ,"platform.cabal" * "http://code.galois.com/darcs/haskell-platform/haskell-platform.cabal"+ ,"platform.cabal" * "http://code.haskell.org/haskell-platform/haskell-platform.cabal" ,"base.txt" * "http://www.haskell.org/hoogle/base.txt" ,"cabal.tar.gz" * (hackage ++ "packages/index.tar.gz") ,"hoogle.tar.gz" * (hackage ++ "packages/hoogle.tar.gz")]