diff --git a/Source/IO/Base.hs b/Source/IO/Base.hs
new file mode 100644
--- /dev/null
+++ b/Source/IO/Base.hs
@@ -0,0 +1,17 @@
+{-|
+Module:             IO.Base
+Description:        Lift operations to 'MonadBase' or 'MonadBaseControl'.
+Copyright:          © 2017 All rights reserved.
+License:            GPL-3
+Maintainer:         Evan Cofsky <evan@theunixman.com>
+Stability:          experimental
+Portability:        POSIX
+-}
+
+module IO.Base (
+    module Control.Monad.Base,
+        module Control.Monad.Trans.Control
+    ) where
+
+import Control.Monad.Base
+import Control.Monad.Trans.Control
diff --git a/liblawless.cabal b/liblawless.cabal
--- a/liblawless.cabal
+++ b/liblawless.cabal
@@ -1,5 +1,5 @@
 name:                liblawless
-version:             0.23.0
+version:             0.23.1
 synopsis:            Prelude based on protolude for GHC 8 and beyond.
 license:             GPL-3
 license-file:        LICENSE
@@ -29,7 +29,7 @@
 source-repository this
   type:     git
   location:   https://gitlab.com/theunixman/liblawless.git
-  tag: v0.23.0
+  tag: v0.23.1
 
 library
   ghc-options: -Wall -Wno-redundant-constraints -Wno-type-defaults -O2
@@ -42,6 +42,7 @@
                   Exception
                   Generics
                   IO
+                  IO.Base
                   Lawless
                   Machine
                   Map
