diff --git a/CHANGES.markdown b/CHANGES.markdown
--- a/CHANGES.markdown
+++ b/CHANGES.markdown
@@ -1,3 +1,8 @@
+## Changes in 0.11.1 [2020.01.27]
+ - This coincides with the `base-compat-0.11.1` release. Refer to the
+   [`base-compat` changelog](https://github.com/haskell-compat/base-compat/blob/master/base-compat/CHANGES.markdown#changes-in-0111-20200127)
+   for more details.
+
 ## Changes in 0.11.0 [2019.09.06]
  - Reexport `MonadFail(fail)` from `Prelude.Compat` and `Control.Monad.Compat`.
 
diff --git a/base-compat-batteries.cabal b/base-compat-batteries.cabal
--- a/base-compat-batteries.cabal
+++ b/base-compat-batteries.cabal
@@ -1,5 +1,5 @@
 name:             base-compat-batteries
-version:          0.11.0
+version:          0.11.1
 license:          MIT
 license-file:     LICENSE
 copyright:        (c) 2012-2018 Simon Hengel,
@@ -34,17 +34,18 @@
                   @<https://github.com/haskell-compat/base-compat/blob/master/base-compat/README.markdown#dependencies here>@
                   for a more comprehensive list of differences between
                   @base-compat@ and @base-compat-batteries@.
-tested-with:        GHC == 7.0.*
-                  , GHC == 7.2.*
-                  , GHC == 7.4.*
-                  , GHC == 7.6.*
-                  , GHC == 7.8.*
-                  , GHC == 7.10.*
-                  , GHC == 8.0.*
-                  , GHC == 8.2.*
-                  , GHC == 8.4.*
-                  , GHC == 8.6.*
-                  , GHC == 8.8.*
+tested-with:        GHC == 7.0.4
+                  , GHC == 7.2.2
+                  , GHC == 7.4.2
+                  , GHC == 7.6.3
+                  , GHC == 7.8.4
+                  , GHC == 7.10.3
+                  , GHC == 8.0.2
+                  , GHC == 8.2.2
+                  , GHC == 8.4.4
+                  , GHC == 8.6.5
+                  , GHC == 8.8.2
+                  , GHC == 8.10.1
 extra-source-files: CHANGES.markdown, README.markdown
 
 source-repository head
@@ -57,7 +58,7 @@
       -Wall
   build-depends:
       base        >= 4.3 && < 5,
-      base-compat == 0.11.0
+      base-compat == 0.11.1
   if !impl(ghc >= 7.8)
     build-depends:
       tagged >= 0.8.5 && < 0.9
@@ -80,6 +81,8 @@
       contravariant >= 1.5 && < 1.6
   ghc-options:
       -fno-warn-duplicate-exports
+  if impl(ghc >= 7.10)
+    ghc-options: -fno-warn-trustworthy-safe
 
   hs-source-dirs:
       src
@@ -139,6 +142,7 @@
       Prelude.Compat
       System.Environment.Compat
       System.Exit.Compat
+      System.IO.Error.Compat
       System.IO.Unsafe.Compat
       Text.Read.Compat
       Type.Reflection.Compat
@@ -197,6 +201,7 @@
       Prelude.Compat.Repl.Batteries
       System.Environment.Compat.Repl.Batteries
       System.Exit.Compat.Repl.Batteries
+      System.IO.Error.Compat.Repl.Batteries
       System.IO.Unsafe.Compat.Repl.Batteries
       Text.Read.Compat.Repl.Batteries
       Type.Reflection.Compat.Repl.Batteries
diff --git a/src/System/IO/Error/Compat.hs b/src/System/IO/Error/Compat.hs
new file mode 100644
--- /dev/null
+++ b/src/System/IO/Error/Compat.hs
@@ -0,0 +1,6 @@
+{-# LANGUAGE CPP, NoImplicitPrelude, PackageImports #-}
+module System.IO.Error.Compat (
+  module Base
+) where
+
+import "base-compat" System.IO.Error.Compat as Base
diff --git a/src/System/IO/Error/Compat/Repl/Batteries.hs b/src/System/IO/Error/Compat/Repl/Batteries.hs
new file mode 100644
--- /dev/null
+++ b/src/System/IO/Error/Compat/Repl/Batteries.hs
@@ -0,0 +1,8 @@
+{-# LANGUAGE PackageImports #-}
+{-# OPTIONS_GHC -fno-warn-dodgy-exports -fno-warn-unused-imports #-}
+-- | Reexports "System.IO.Error.Compat"
+-- from a globally unique namespace.
+module System.IO.Error.Compat.Repl.Batteries (
+  module System.IO.Error.Compat
+) where
+import "this" System.IO.Error.Compat
diff --git a/test/SafeHaskellSpec.hs b/test/SafeHaskellSpec.hs
--- a/test/SafeHaskellSpec.hs
+++ b/test/SafeHaskellSpec.hs
@@ -56,6 +56,7 @@
 import Prelude.Compat
 import System.Environment.Compat ()
 import System.Exit.Compat ()
+import System.IO.Error ()
 import Text.Read.Compat ()
 import Type.Reflection.Compat ()
 
