haskell-postal 0.2.1.0 → 0.2.1.1
raw patch · 3 files changed
+5/−3 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- README.md +2/−0
- haskell-postal.cabal +1/−1
- src/NLP/Postal.hs +2/−2
README.md view
@@ -1,3 +1,5 @@+[](https://travis-ci.org/netom/haskell-postal)+ # haskell-postal Haskell binding for the libpostal library
haskell-postal.cabal view
@@ -1,5 +1,5 @@ name: haskell-postal-version: 0.2.1.0+version: 0.2.1.1 synopsis: Haskell binding for the libpostal library description: Provides an interface for the libpostal NLP library homepage: https://github.com/netom/haskell-postal#readme
src/NLP/Postal.hs view
@@ -140,7 +140,7 @@ where castedOptions = castPtr options- bsAddress = TE.encodeUtf8 address+ bsAddress = TE.encodeUtf8 address <> "\0" -- |Returns the expansion of an address -- Calls libpostal_expand_address() to normalize an address and return the list@@ -169,7 +169,7 @@ return result where- bsAddress = TE.encodeUtf8 address+ bsAddress = TE.encodeUtf8 address <> "\0" cOptions = castPtr options -- |Calls libpostal_teardown_parser()