diff --git a/clay.cabal b/clay.cabal
--- a/clay.cabal
+++ b/clay.cabal
@@ -1,5 +1,5 @@
 Name:     clay
-Version:  0.8
+Version:  0.8.0.1
 Synopsis: CSS preprocessor as embedded Haskell.
 Description:
   Clay is a CSS preprocessor like LESS and Sass, but implemented as an embedded
@@ -11,14 +11,11 @@
   .
   The API documentation can be found in the top level module "Clay".
   .
-  > 0.7 -> 0.8
-  >   - Print prettier doubles.
-  >   - Loosen type of sym functions.
-  >   - Added some missing multi-side properties.
-  >   - Added content URL support.
-  >   - Added inset box shadows.
-  >   Thanks Deck and James Fisher.
+  > 0.8 -> 0.8.0.1
+  >   - Widened dependency on text.
+  >   Thanks to bgamari.
 
+
 Author:        Sebastiaan Visser
 Maintainer:    Sebastiaan Visser <code@fvisser.nl>
 Homepage:      http://fvisser.nl/clay
@@ -70,7 +67,7 @@
   Build-Depends:
     base  >= 4    && < 5,
     mtl   >= 1    && < 2.2,
-    text  >= 0.11 && < 0.12
+    text  >= 0.11 && < 1.2
 
 Test-Suite Test-Clay
   Type: exitcode-stdio-1.0
diff --git a/src/Clay/Text.hs b/src/Clay/Text.hs
--- a/src/Clay/Text.hs
+++ b/src/Clay/Text.hs
@@ -169,7 +169,7 @@
   deriving (Val, Normal, Inherit, Other)
 
 whiteSpace :: WhiteSpace -> Css
-whiteSpace = key "whiteSpace"
+whiteSpace = key "white-space"
 
 pre, nowrap, preWrap, preLine :: WhiteSpace
 
