diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
 # Changelog
 
+## 0.2.0.0
+
+  * Don't export scheme and port for base URL since Ziptastic supports both HTTP and HTTPS.
+  * Change LANGUAGE pragma formatting to support older GHCs.
+
 ## 0.1.0.1
 
   * Add version bounds.
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -2,6 +2,8 @@
 
 [![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-core.svg)](http://hackage.haskell.org/package/ziptastic-core)
+[![Hackage-Deps](https://img.shields.io/hackage-deps/v/ziptastic-core.svg)](http://packdeps.haskellers.com/feed?needle=ziptastic-core)
 
 Core [Servant](http://haskell-servant.readthedocs.io/en/stable/) specification 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/Core.hs b/src/Ziptastic/Core.hs
--- a/src/Ziptastic/Core.hs
+++ b/src/Ziptastic/Core.hs
@@ -1,11 +1,4 @@
-{-# LANGUAGE
-    DataKinds
-  , DeriveGeneric
-  , FlexibleInstances
-  , GeneralizedNewtypeDeriving
-  , OverloadedStrings
-  , TypeOperators
-#-}
+{-# LANGUAGE DataKinds, DeriveGeneric, FlexibleInstances, GeneralizedNewtypeDeriving, OverloadedStrings, TypeOperators #-}
 
 -- | This module provides a complete and type-safe API specification for
 -- Ziptastic's forward and reverse geocoding API using Servant
@@ -19,9 +12,7 @@
   , LocaleCoords(..)
   , LocaleInfo(..)
   , baseUrlHost
-  , baseUrlIsHttps
   , baseUrlPath
-  , baseUrlPort
   ) where
 
 import           Control.Monad (when)
@@ -125,14 +116,8 @@
 
 
 -- API URL components
-baseUrlIsHttps :: Bool
-baseUrlIsHttps = True
-
 baseUrlHost :: String
 baseUrlHost = "zip.getziptastic.com"
-
-baseUrlPort :: Int
-baseUrlPort = 443
 
 baseUrlPath :: String
 baseUrlPath = ""
diff --git a/test/Spec.hs b/test/Spec.hs
--- a/test/Spec.hs
+++ b/test/Spec.hs
@@ -1,7 +1,4 @@
-{-# LANGUAGE
-    OverloadedStrings
-  , QuasiQuotes
-#-}
+{-# LANGUAGE OverloadedStrings, QuasiQuotes #-}
 
 module Main (main) where
 
diff --git a/ziptastic-core.cabal b/ziptastic-core.cabal
--- a/ziptastic-core.cabal
+++ b/ziptastic-core.cabal
@@ -1,5 +1,5 @@
 name:                ziptastic-core
-version:             0.1.0.1
+version:             0.2.0.0
 synopsis:
   Core Servant specification for the Ziptastic API for doing forward and reverse geocoding.
 description:
@@ -20,7 +20,7 @@
 build-type:          Simple
 extra-source-files:  README.md
 cabal-version:       >=1.10
-tested-with:         GHC==8.0.2
+tested-with:         GHC == 8.0.2
 extra-source-files:
   CHANGELOG.md
   README.md
