ziptastic-client 0.3.0.0 → 0.3.0.1
raw patch · 5 files changed
+17/−2 lines, 5 filesdep +base-compatdep ~ziptastic-corePVP ok
version bump matches the API change (PVP)
Dependencies added: base-compat
Dependency ranges changed: ziptastic-core
API changes (from Hackage documentation)
Files
- CHANGELOG.md +5/−0
- README.md +1/−0
- src/Ziptastic/Client.hs +2/−0
- test/Spec.hs +2/−0
- ziptastic-client.cabal +7/−2
CHANGELOG.md view
@@ -1,5 +1,10 @@ # Changelog +## 0.3.0.1++ * Improve documentation for region fields.+ * Support GHC 7.8.+ ## 0.3.0.0 * Detect if a `Manager` supports TLS and switch between HTTP and HTTPS automatically.
README.md view
@@ -3,6 +3,7 @@ [](http://www.haskell.org) [](https://tldrlegal.com/license/bsd-3-clause-license-%28revised%29) [](http://hackage.haskell.org/package/ziptastic-client)+[](https://travis-ci.org/Ziptastic/ziptastic-haskell) [](http://packdeps.haskellers.com/feed?needle=ziptastic-client) A convenient and type-safe client library for the [Ziptastic](https://www.getziptastic.com/) API providing forward and reverse geocoding via country, zip code (postal code), latitude, and longitude.
src/Ziptastic/Client.hs view
@@ -26,6 +26,8 @@ , reverseGeocodeWithRadius ) where +import Prelude ()+import Prelude.Compat import Data.ISO3166_CountryCodes (CountryCode) import Data.Proxy (Proxy(..)) import Data.Text (Text)
test/Spec.hs view
@@ -2,6 +2,8 @@ module Main (main) where +import Prelude ()+import Prelude.Compat import Data.ISO3166_CountryCodes (CountryCode(US)) import Network.HTTP.Client (newManager) import Network.HTTP.Client (defaultManagerSettings)
ziptastic-client.cabal view
@@ -1,5 +1,5 @@ name: ziptastic-client-version: 0.3.0.0+version: 0.3.0.1 synopsis: A type-safe client for the Ziptastic API for doing forward and reverse geocoding. description:@@ -28,12 +28,13 @@ exposed-modules: Ziptastic.Client build-depends: base >= 4.7 && < 5+ , base-compat == 0.9.* , http-client , iso3166-country-codes , servant >= 0.9 && <= 0.11 , servant-client >= 0.9 && <= 0.11 , text- , ziptastic-core == 0.2.0.0+ , ziptastic-core == 0.2.0.1 default-language: Haskell2010 other-extensions: DataKinds@@ -47,6 +48,7 @@ main-is: Spec.hs build-depends: base+ , base-compat , hspec , http-client , http-client-tls@@ -56,6 +58,9 @@ , ziptastic-client ghc-options: -threaded -rtsopts -with-rtsopts=-N default-language: Haskell2010+ other-extensions:+ LambdaCase+ OverloadedStrings source-repository head