diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Revision history for coquina
 
+## 0.1.0.1
+
+* Loosen version bounds
+
 ## 0.1.0.0
 
 * First version. A few simple functions for running shell commands and
diff --git a/README.lhs b/README.lhs
--- a/README.lhs
+++ b/README.lhs
@@ -1,3 +1,6 @@
+# MOVED TO [GITHUB](https://github.com/obsidiansystems/coquina)
+
+
 # coquina
 [![Haskell](https://img.shields.io/badge/language-Haskell-orange.svg)](https://haskell.org) [![Hackage](https://img.shields.io/hackage/v/coquina.svg)](https://hackage.haskell.org/package/coquina) [![Hackage CI](https://matrix.hackage.haskell.org/api/v2/packages/coquina/badge)](https://matrix.hackage.haskell.org/#/package/coquina) [![Github CI](https://github.com/obsidiansystems/coquina/workflows/github-action/badge.svg)](https://github.com/obsidiansystems/coquina/actions) [![BSD3 License](https://img.shields.io/badge/license-BSD3-blue.svg)](https://github.com/obsidiansystems/coquina/blob/master/LICENSE)
 
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,3 +1,6 @@
+# MOVED TO [GITHUB](https://github.com/obsidiansystems/coquina)
+
+
 # coquina
 [![Haskell](https://img.shields.io/badge/language-Haskell-orange.svg)](https://haskell.org) [![Hackage](https://img.shields.io/hackage/v/coquina.svg)](https://hackage.haskell.org/package/coquina) [![Hackage CI](https://matrix.hackage.haskell.org/api/v2/packages/coquina/badge)](https://matrix.hackage.haskell.org/#/package/coquina) [![Github CI](https://github.com/obsidiansystems/coquina/workflows/github-action/badge.svg)](https://github.com/obsidiansystems/coquina/actions) [![BSD3 License](https://img.shields.io/badge/license-BSD3-blue.svg)](https://github.com/obsidiansystems/coquina/blob/master/LICENSE)
 
diff --git a/coquina.cabal b/coquina.cabal
--- a/coquina.cabal
+++ b/coquina.cabal
@@ -1,6 +1,6 @@
 cabal-version:      >=1.10
 name:               coquina
-version:            0.1.0.0
+version:            0.1.0.1
 synopsis:           Yet another shell monad.
 description:        A simple monad for shelling out from Haskell programs.
 bug-reports:        https://github.com/obsidiansystems/coquina/issues
@@ -20,20 +20,20 @@
   hs-source-dirs:   src
   build-depends:
       async        >=2.2.2  && <2.3
-    , base         >=4.12.0 && <4.15
-    , bytestring   >=0.10.8 && <0.11
-    , containers   >=0.6.0  && <0.7
-    , deepseq      >=1.4.4  && <1.5
+    , base         >=4.12.0 && <4.20
+    , bytestring   >=0.10.8 && <0.13
+    , containers   >=0.6.0  && <0.8
+    , deepseq      >=1.4.4  && <1.6
     , directory    >=1.3.3  && <1.4
     , exceptions   >=0.10.3 && <0.11
-    , filepath     >=1.4.2  && <1.5
-    , monad-logger >=0.3    && <0.4
-    , mtl          >=2.2.2  && <2.3
+    , filepath     >=1.4.2  && <1.6
+    , monad-logger >= 0.3   && <0.4
+    , mtl          >=2.2.2  && <2.4
     , process      >=1.6.5  && <1.7
     , stm          >=2.5.0  && <2.6
     , temporary    >=1.3    && <1.4
-    , text         >=1.2.3  && <1.3
-    , transformers >=0.5    && <0.6
+    , text         >=1.2.3  && <2.2
+    , transformers >=0.5    && <0.7
 
   exposed-modules:
     Coquina
diff --git a/src/Coquina.hs b/src/Coquina.hs
--- a/src/Coquina.hs
+++ b/src/Coquina.hs
@@ -53,8 +53,10 @@
 import qualified Control.Concurrent.Async as Async
 import Control.DeepSeq (rnf)
 import Control.Exception (evaluate)
+import Control.Monad
 import Control.Monad.Catch (MonadCatch, MonadMask, MonadThrow, finally)
-import Control.Monad.Except (MonadError, ExceptT, throwError, runExceptT)
+import Control.Monad.Except (ExceptT, MonadError, runExceptT, throwError)
+import Control.Monad.Fix
 import Control.Monad.Logger (MonadLogger)
 import Control.Monad.Trans.Except (mapExceptT)
 import Control.Monad.Writer
