hackernews 1.1.1.0 → 1.1.2.0
raw patch · 2 files changed
+6/−6 lines, 2 filesdep ~servantdep ~servant-clientPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: servant, servant-client
API changes (from Hackage documentation)
Files
- README.md +3/−3
- hackernews.cabal +3/−3
README.md view
@@ -8,7 +8,7 @@ Hacker News API for Haskell -###Documentation+### Documentation <https://github.com/HackerNews/API> Now it supports GHCJS and can be used in the browser! Just install it using:@@ -16,7 +16,7 @@ cabal install --ghcjs ``` -###Tests+### Tests ```bash cabal configure && cabal test ```@@ -41,7 +41,7 @@ 13 examples, 0 failures ``` -###Usage+### Usage ```haskell module Main where
hackernews.cabal view
@@ -1,5 +1,5 @@ name: hackernews-version: 1.1.1.0+version: 1.1.2.0 description: API for news.ycombinator.com license: MIT synopsis: API for Hacker News@@ -55,7 +55,7 @@ , Web.HackerNews.Types hs-source-dirs: src build-depends:- servant == 0.9.*+ servant >= 0.9 && < 0.11 , QuickCheck , quickcheck-instances if impl(ghcjs)@@ -72,7 +72,7 @@ hs-source-dirs: ghc-src build-depends: aeson , base < 5- , servant-client == 0.9.*+ , servant-client >= 0.9 && < 0.11 , http-client == 0.5.* , string-conversions == 0.4.* , http-types == 0.9.*