diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+## 1.0.0.2
+
+*   Change imports so this works with >= 0.18.1.
+    [#20](https://github.com/cdepillabout/servant-rawm/pull/20)
+    Thanks [@jhrcek](https://github.com/jhrcek)!
+
 ## 1.0.0.1
 
 *   Bump the version lower bound of servant-rawm to 1.0
diff --git a/servant-rawm-client.cabal b/servant-rawm-client.cabal
--- a/servant-rawm-client.cabal
+++ b/servant-rawm-client.cabal
@@ -1,5 +1,5 @@
 name:                servant-rawm-client
-version:             1.0.0.1
+version:             1.0.0.2
 synopsis:            The client implementation of servant-rawm.
 description:         Please see <https://github.com/cdepillabout/servant-rawm#readme README.md>.
 homepage:            https://github.com/cdepillabout/servant-rawm
diff --git a/src/Servant/RawM/Client.hs b/src/Servant/RawM/Client.hs
--- a/src/Servant/RawM/Client.hs
+++ b/src/Servant/RawM/Client.hs
@@ -28,7 +28,8 @@
 import Data.Proxy          (Proxy (Proxy))
 import Servant.Client.Core (Client,
                             HasClient (clientWithRoute, hoistClientMonad),
-                            Request, Response, RunClient, runRequest)
+                            Request, Response, RunClient)
+import Servant.Client.Core.RunClient (runRequest)
 import Servant.RawM
 
 -- | Creates a client route like the following:
