diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+0.11.1
+-----
+
+- Support `servant-0.13`
+- Export MultipartBackend and TmpBackendOptions
+
 0.11
 ----
 
diff --git a/servant-multipart.cabal b/servant-multipart.cabal
--- a/servant-multipart.cabal
+++ b/servant-multipart.cabal
@@ -1,7 +1,11 @@
 name:                servant-multipart
-version:             0.11
+version:             0.11.1
 synopsis:            multipart/form-data (e.g file upload) support for servant
-description:         Please see README.md
+description:
+  This package adds support for file upload to the servant ecosystem. It draws
+  on ideas and code from several people who participated in the (in)famous
+  [ticket #133](https://github.com/haskell-servant/servant/issues/133) on
+  servant's issue tracker.
 homepage:            https://github.com/haskell-servant/servant-multipart#readme
 license:             BSD3
 license-file:        LICENSE
@@ -16,7 +20,7 @@
   GHC==7.8.4,
   GHC==7.10.3,
   GHC==8.0.2,
-  GHC==8.2.1
+  GHC==8.2.2
 
 library
   hs-source-dirs:      src
@@ -26,11 +30,11 @@
                 bytestring >= 0.10 && <0.11,
                 directory,
                 http-media >= 0.6 && <0.8,
-                lens >= 4.0 && < 4.16,
-                resourcet >=1.1 && <1.2,
-                servant >=0.10 && <0.13,
-                servant-docs >=0.10 && <0.13,
-                servant-server >=0.10 && <0.13,
+                lens >= 4.0 && < 4.17,
+                resourcet >=1.1 && <1.3,
+                servant >=0.10 && <0.14,
+                servant-docs >=0.10 && <0.14,
+                servant-server >=0.10 && <0.14,
                 text >=1.2 && <1.3,
                 transformers >=0.3 && <0.6,
                 wai >= 3.2 && <3.3,
diff --git a/src/Servant/Multipart.hs b/src/Servant/Multipart.hs
--- a/src/Servant/Multipart.hs
+++ b/src/Servant/Multipart.hs
@@ -24,7 +24,9 @@
   , lookupFile
   , MultipartOptions(..)
   , defaultMultipartOptions
+  , MultipartBackend(..)
   , Tmp
+  , TmpBackendOptions(..)
   , Mem
   , defaultTmpBackendOptions
   , Input(..)
