diff --git a/Text/Blaze.hs b/Text/Blaze.hs
--- a/Text/Blaze.hs
+++ b/Text/Blaze.hs
@@ -1,4 +1,4 @@
-{-# LANGUAGE TypeSynonymInstances #-}
+{-# LANGUAGE FlexibleInstances, TypeSynonymInstances #-}
 -- | BlazeHtml is an HTML combinator library. It provides a way to embed HTML in
 -- Haskell in an efficient and convenient way, with a light-weight syntax.
 --
@@ -84,7 +84,6 @@
     -- | Convert a value to HTML.
     --
     toHtml :: a -> Html
-    {-# INLINE toHtml #-}
 
 instance ToHtml Html where
     toHtml = id
@@ -132,7 +131,6 @@
     -- | Convert a value to an HTML attribute value
     --
     toValue :: a -> AttributeValue
-    {-# INLINE toValue #-}
 
 instance ToValue AttributeValue where
     toValue = id
diff --git a/blaze-html.cabal b/blaze-html.cabal
--- a/blaze-html.cabal
+++ b/blaze-html.cabal
@@ -1,5 +1,5 @@
 Name:         blaze-html
-Version:      0.4.1.5
+Version:      0.4.1.6
 Homepage:     http://jaspervdj.be/blaze
 Bug-Reports:  http://github.com/jaspervdj/blaze-html/issues
 License:      BSD3
