diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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.
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -3,6 +3,7 @@
 [![Haskell Programming Language](https://img.shields.io/badge/language-Haskell-blue.svg)](http://www.haskell.org)
 [![BSD3 License](http://img.shields.io/badge/license-BSD3-brightgreen.svg)](https://tldrlegal.com/license/bsd-3-clause-license-%28revised%29)
 [![Hackage](https://img.shields.io/hackage/v/ziptastic-client.svg)](http://hackage.haskell.org/package/ziptastic-client)
+[![Build status](https://travis-ci.org/Ziptastic/ziptastic-haskell.svg?branch=master)](https://travis-ci.org/Ziptastic/ziptastic-haskell)
 [![Hackage-Deps](https://img.shields.io/hackage-deps/v/ziptastic-client.svg)](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.
diff --git a/src/Ziptastic/Client.hs b/src/Ziptastic/Client.hs
--- a/src/Ziptastic/Client.hs
+++ b/src/Ziptastic/Client.hs
@@ -26,6 +26,8 @@
   , reverseGeocodeWithRadius
   ) where
 
+import           Prelude ()
+import           Prelude.Compat
 import           Data.ISO3166_CountryCodes (CountryCode)
 import           Data.Proxy (Proxy(..))
 import           Data.Text (Text)
diff --git a/test/Spec.hs b/test/Spec.hs
--- a/test/Spec.hs
+++ b/test/Spec.hs
@@ -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)
diff --git a/ziptastic-client.cabal b/ziptastic-client.cabal
--- a/ziptastic-client.cabal
+++ b/ziptastic-client.cabal
@@ -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
