diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,8 @@
 
+## 0.2.0.2
+
+*   Add missing test file to extra-source-files in the cabal file.
+
 ## 0.2.0.1
 
 *   Add tests and more documentation.
diff --git a/example/Client.hs b/example/Client.hs
--- a/example/Client.hs
+++ b/example/Client.hs
@@ -22,10 +22,6 @@
 -- Clients generated by servant-client --
 -----------------------------------------
 
--- We generate the client functions just like normal.  Note that when we use
--- 'Throws' or 'NoThrow', the client functions get generated with the
--- 'Envelope' type.
-
 otherEndpoint1 :: ClientM Int
 getFile' :: Method -> (Req -> Req) -> ClientM (Int, ByteString, MediaType, [Header], Response ByteString)
 otherEndpoint2 :: ClientM Int
diff --git a/example/files/bar.txt b/example/files/bar.txt
new file mode 100644
--- /dev/null
+++ b/example/files/bar.txt
@@ -0,0 +1,1 @@
+This is bar.txt.
diff --git a/servant-rawm.cabal b/servant-rawm.cabal
--- a/servant-rawm.cabal
+++ b/servant-rawm.cabal
@@ -1,5 +1,5 @@
 name:                servant-rawm
-version:             0.2.0.1
+version:             0.2.0.2
 synopsis:            Embed a raw 'Application' in a Servant API
 description:         Please see <https://github.com/cdepillabout/servant-rawm#readme README.md>.
 homepage:            https://github.com/cdepillabout/servant-rawm
@@ -12,6 +12,7 @@
 build-type:          Simple
 extra-source-files:  CHANGELOG.md
                    , README.md
+                   , example/files/bar.txt
                    , example/files/foo.txt
                    , stack.yaml
 cabal-version:       >=1.10
diff --git a/src/Servant/RawM.hs b/src/Servant/RawM.hs
--- a/src/Servant/RawM.hs
+++ b/src/Servant/RawM.hs
@@ -48,7 +48,7 @@
 @
   type Api\' = \"serve-directory-example\" :> 'Raw'
 
-  serverRoot\' :: 'Server.ServerT' Api ('Control.Monad.Reader.ReaderT' 'FilePath' 'IO')
+  serverRoot\' :: 'Server.ServerT' Api\' ('Control.Monad.Reader.ReaderT' 'FilePath' 'IO')
   serverRoot\' = rawEndpoint\'
 
   rawEndpoint\' :: 'Data.Tagged.Tagged' ('Control.Monad.Reader.ReaderT' 'FilePath' 'IO') 'Network.Wai.Application'
