From c04bbaff37a99d6027b2da430622f5601de07822 Mon Sep 17 00:00:00 2001 From: Juan Carlos Paucar Date: Wed, 9 Aug 2017 15:24:50 -0500 Subject: [PATCH] Bump version and Correct boundaries for old base package --- CHANGELOG.md | 5 +++++ hapistrano.cabal | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 15d80bb..f9a870c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/hapistrano.cabal b/hapistrano.cabal index 42a7626..aace286 100644 --- a/hapistrano.cabal +++ b/hapistrano.cabal @@ -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