diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+## Stache 1.1.1
+
+* Exported `mustacheRenderW`, `MustacheWarning`, and
+  `displayMustacheWarning` from `Text.Mustache`.
+
 ## Stache 1.1.0
 
 * Added `mustacheRenderW` that allows to render a `Template` collecting
diff --git a/Text/Mustache.hs b/Text/Mustache.hs
--- a/Text/Mustache.hs
+++ b/Text/Mustache.hs
@@ -78,12 +78,15 @@
   , Key (..)
   , PName (..)
   , MustacheException (..)
+  , MustacheWarning (..)
+  , displayMustacheWarning
     -- * Compiling
   , compileMustacheDir
   , compileMustacheFile
   , compileMustacheText
     -- * Rendering
-  , renderMustache )
+  , renderMustache
+  , renderMustacheW )
 where
 
 import Text.Mustache.Compile
diff --git a/Text/Mustache/Render.hs b/Text/Mustache/Render.hs
--- a/Text/Mustache/Render.hs
+++ b/Text/Mustache/Render.hs
@@ -75,7 +75,7 @@
 
 -- | Like 'renderMustache', but also returns a collection of warnings.
 --
--- @since 1.1.0
+-- @since 1.1.1
 
 renderMustacheW :: Template -> Value -> ([MustacheWarning], TL.Text)
 renderMustacheW t =
diff --git a/Text/Mustache/Type.hs b/Text/Mustache/Type.hs
--- a/Text/Mustache/Type.hs
+++ b/Text/Mustache/Type.hs
@@ -128,7 +128,7 @@
 
 -- | Warning that may be generated during rendering of a 'Template'.
 --
--- @since 1.1.0
+-- @since 1.1.1
 
 data MustacheWarning
   = MustacheVariableNotFound Key
@@ -141,7 +141,7 @@
 
 -- | Pretty-print a 'MustacheWarning'.
 --
--- @since 1.1.0
+-- @since 1.1.1
 
 displayMustacheWarning :: MustacheWarning -> String
 displayMustacheWarning (MustacheVariableNotFound key) =
diff --git a/stache.cabal b/stache.cabal
--- a/stache.cabal
+++ b/stache.cabal
@@ -1,5 +1,5 @@
 name:                 stache
-version:              1.1.0
+version:              1.1.1
 cabal-version:        >= 1.18
 tested-with:          GHC==7.8.4, GHC==7.10.3, GHC==8.0.2, GHC==8.2.1
 license:              BSD3
