diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 0.4.1.3
+### Changed
+* Allow formatting-7.0
+
 ## 0.4.1.2
 ### Changed
 * Allow optparse-applicative-0.16.0.0
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -2,6 +2,21 @@
 [![Hackage version](https://img.shields.io/hackage/v/hapistrano.svg)](http://hackage.haskell.org/package/hapistrano)
 [![Docker Hub](https://img.shields.io/docker/build/stackbuilders/hapistrano.svg?style=flat)](https://hub.docker.com/r/stackbuilders/hapistrano)
 
+# Table of Contents
+
+ * [Hapistrano](#hapistrano)
+ * [Purpose](#purpose)
+ * [How it Works](#how-it-works)
+ * [Usage](#usage)
+    * [Environment Variables](#environment-variables)
+ * [What to do when compiling on server is not viable](#what-to-do-when-compiling-on-server-is-not-viable)
+ * [Deploying to multiple machines concurrently](#deploying-to-multiple-machines-concurrently)
+ * [Docker](#docker)
+ * [Nix](#nix)
+ * [License](#license)
+ * [Contributing](#contributing)
+ 
+ 
 # Hapistrano
 
 Hapistrano is a deployment library for Haskell applications similar to
diff --git a/app/Main.hs b/app/Main.hs
--- a/app/Main.hs
+++ b/app/Main.hs
@@ -11,7 +11,7 @@
 import           Data.Version               (showVersion)
 import qualified Data.Yaml.Config           as Yaml
 import           Development.GitRev
-import           Formatting
+import           Formatting                 (formatToString, string, (%))
 import           Numeric.Natural
 import           Options.Applicative        hiding (str)
 import           Path
diff --git a/hapistrano.cabal b/hapistrano.cabal
--- a/hapistrano.cabal
+++ b/hapistrano.cabal
@@ -1,5 +1,5 @@
 name:                hapistrano
-version:             0.4.1.2
+version:             0.4.1.3
 synopsis:            A deployment library for Haskell applications
 description:
   .
@@ -57,7 +57,6 @@
                      , ansi-terminal      >= 0.9 && < 0.12
                      , base               >= 4.8 && < 5.0
                      , filepath           >= 1.2 && < 1.5
-                     , formatting         >= 6.2 && < 7.0
                      , gitrev             >= 1.2 && < 1.4
                      , mtl                >= 2.0 && < 3.0
                      , stm                >= 2.0 && < 2.6
@@ -80,7 +79,7 @@
   build-depends:       aeson              >= 0.11 && < 1.6
                      , async              >= 2.0.1.6 && < 2.4
                      , base               >= 4.8 && < 5.0
-                     , formatting         >= 6.2 && < 7.0
+                     , formatting         >= 6.2 && < 8.0
                      , gitrev             >= 1.2 && < 1.4
                      , hapistrano
                      , optparse-applicative >= 0.11 && < 0.17
