diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+## 0.4.0.1
+### Changed
+* Allow `time` 1.10
+* Correct the package to reenable Hapistrano in Stackage
+
 ## 0.4.0.0
 ### Added
 * Copy a directory's contents with `local_directory` instead of using _git_ with `repo` and `revision`.
diff --git a/fixtures/git_repository_config.yaml b/fixtures/git_repository_config.yaml
new file mode 100644
--- /dev/null
+++ b/fixtures/git_repository_config.yaml
@@ -0,0 +1,4 @@
+deploy_path: '/'
+host: www.example.com
+repo: 'my-repo'
+revision: 'my-revision'
diff --git a/fixtures/local_directory_config.yaml b/fixtures/local_directory_config.yaml
new file mode 100644
--- /dev/null
+++ b/fixtures/local_directory_config.yaml
@@ -0,0 +1,3 @@
+deploy_path: '/'
+host: www.example.com
+local_directory: '/'
diff --git a/hapistrano.cabal b/hapistrano.cabal
--- a/hapistrano.cabal
+++ b/hapistrano.cabal
@@ -1,5 +1,5 @@
 name:                hapistrano
-version:             0.4.0.0
+version:             0.4.0.1
 synopsis:            A deployment library for Haskell applications
 description:
   .
@@ -33,6 +33,7 @@
                    , README.md
                    , Dockerfile
 data-files:          script/clean-build.sh
+                   , fixtures/*.yaml
 
 flag dev
   description:        Turn on development settings.
@@ -63,7 +64,7 @@
                      , path               >= 0.5 && < 0.8
                      , process            >= 1.4 && < 1.7
                      , typed-process      >= 0.2 && < 0.3
-                     , time               >= 1.5 && < 1.10
+                     , time               >= 1.5 && < 1.11
                      , transformers       >= 0.4 && < 0.6
                      , yaml               >= 0.8.16 && < 0.12
   if flag(dev)
