diff --git a/ClassyPrelude.hs b/ClassyPrelude.hs
--- a/ClassyPrelude.hs
+++ b/ClassyPrelude.hs
@@ -27,6 +27,8 @@
       -- ** Time (since 0.6.1)
     , module Data.Time
     , defaultTimeLocale
+      -- ** Generics (since 0.8.1)
+    , Generic
       -- * Poly hierarchy
     , module Data.Foldable
     , module Data.Traversable
@@ -164,6 +166,7 @@
 
 import Data.Textual.Encoding
 import Data.Sequences.Lazy
+import GHC.Generics (Generic)
 
 tshow :: Show a => a -> Text
 tshow = fromList . Prelude.show
diff --git a/classy-prelude.cabal b/classy-prelude.cabal
--- a/classy-prelude.cabal
+++ b/classy-prelude.cabal
@@ -1,5 +1,5 @@
 name:                classy-prelude
-version:             0.8.0.1
+version:             0.8.1
 synopsis:            A typeclass-based Prelude.
 description:         Focuses on using common typeclasses when possible, and creating new ones to avoid name clashing. Exposes many recommended datastructures (Map, ByteString, etc) directly without requiring long import lists and qualified modules.
 homepage:            https://github.com/snoyberg/classy-prelude
