hapistrano 0.4.0.0 → 0.4.0.1
raw patch · 4 files changed
+15/−2 lines, 4 filesdep ~timePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: time
API changes (from Hackage documentation)
Files
- CHANGELOG.md +5/−0
- fixtures/git_repository_config.yaml +4/−0
- fixtures/local_directory_config.yaml +3/−0
- hapistrano.cabal +3/−2
CHANGELOG.md view
@@ -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`.
+ fixtures/git_repository_config.yaml view
@@ -0,0 +1,4 @@+deploy_path: '/'+host: www.example.com+repo: 'my-repo'+revision: 'my-revision'
+ fixtures/local_directory_config.yaml view
@@ -0,0 +1,3 @@+deploy_path: '/'+host: www.example.com+local_directory: '/'
hapistrano.cabal view
@@ -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)