diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,10 @@
 # Changelog for rio
 
+## 0.1.9.1
+
+* Remove accidental reexport of `Control.Applicative.empty` introduced in the previous release.
+* Functions from `Data.Data.Data` class are brought to the re-export list as well.
+
 ## 0.1.9.0
 
 * Add `Prelude.Exit` to export lifted versions of the exit functions from `System.Exit`.
diff --git a/rio.cabal b/rio.cabal
--- a/rio.cabal
+++ b/rio.cabal
@@ -4,10 +4,10 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: 6f5dc93d0508056a442e310600368aef689150506da77c8be79554052108f60a
+-- hash: e4d808363ae67f8f6644747633818294f287d1c9e7cd539b5b71c90b74034aed
 
 name:           rio
-version:        0.1.9.0
+version:        0.1.9.1
 synopsis:       A standard library for Haskell
 description:    See README and Haddocks at <https://www.stackage.org/package/rio>
 category:       Control
diff --git a/src/RIO/Prelude.hs b/src/RIO/Prelude.hs
--- a/src/RIO/Prelude.hs
+++ b/src/RIO/Prelude.hs
@@ -257,7 +257,6 @@
 
     -- * @Alternative@
     -- | Re-exported from "Control.Applicative":
-  , Control.Applicative.empty
   , (Control.Applicative.<|>)
   , Control.Applicative.some
   , Control.Applicative.many
diff --git a/src/RIO/Prelude/Types.hs b/src/RIO/Prelude/Types.hs
--- a/src/RIO/Prelude/Types.hs
+++ b/src/RIO/Prelude/Types.hs
@@ -170,7 +170,7 @@
   , Data.Typeable.Typeable
     -- **** @Data@
     -- | Re-exported from "Data.Data":
-  , Data.Data.Data
+  , Data.Data.Data(..)
     -- **** @Generic@
     -- | Re-exported from "GHC.Generics":
   , GHC.Generics.Generic
