Merge pull request #80 from stackbuilders/allow_base_4_7

Correct boundaries for old base package
This commit is contained in:
Juan Paucar 2017-09-04 16:03:31 -05:00 committed by GitHub
commit 15ad1eeee0
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
## 0.3.3.0
* Correct bounds for base. GHC support for versions older than 7.10 was dropped on 0.3.0.0
* Add `run_locally` to run user defined commands locally before deployment. Thanks to Sibi (GitHub: psibi) for this contribution
## 0.3.2.4
* Allow time 1.8

View File

@ -1,5 +1,5 @@
name: hapistrano
version: 0.3.2.4
version: 0.3.3.0
synopsis: A deployment library for Haskell applications
description:
.
@ -43,7 +43,7 @@ library
, System.Hapistrano.Commands
, System.Hapistrano.Core
, System.Hapistrano.Types
build-depends: base >= 4.6 && < 5.0
build-depends: base >= 4.8 && < 5.0
, filepath >= 1.2 && < 1.5
, mtl >= 2.0 && < 3.0
, path >= 0.5 && < 0.7
@ -63,7 +63,7 @@ executable hap
, Paths_hapistrano
build-depends: aeson >= 0.11 && < 1.3
, async >= 2.0.1.6 && < 2.2
, base >= 4.6 && < 5.0
, base >= 4.8 && < 5.0
, hapistrano
, optparse-applicative >= 0.11 && < 0.15
, path >= 0.5 && < 0.7
@ -81,7 +81,7 @@ test-suite test
hs-source-dirs: spec
main-is: Spec.hs
other-modules: System.HapistranoSpec
build-depends: base >= 4.5 && < 5.0
build-depends: base >= 4.8 && < 5.0
, directory >= 1.2.2 && < 1.4
, filepath >= 1.2 && < 1.5
, hapistrano