Loose package constraints

This commit is contained in:
Juan Carlos Paucar 2017-08-08 16:57:17 -05:00
parent 5cdced4c6f
commit a82d8d5f84
4 changed files with 13 additions and 5 deletions

View File

@ -13,6 +13,8 @@ matrix:
addons: {apt: {packages: [cabal-install-1.24,ghc-7.10.3],sources: [hvr-ghc]}}
- env: CABALVER=1.24 GHCVER=8.0.2
addons: {apt: {packages: [cabal-install-1.24,ghc-8.0.2], sources: [hvr-ghc]}}
- env: CABALVER=2.0 GHCVER=8.2.1
addons: {apt: {packages: [cabal-install-2.0,ghc-8.2.1], sources: [hvr-ghc]}}
before_install:
- export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:$PATH

View File

@ -1,3 +1,8 @@
## 0.3.2.4
* Allow time 1.8
* Allow process 1.6
## 0.3.2.3
* Allow path-io 1.3

View File

@ -1,5 +1,5 @@
name: hapistrano
version: 0.3.2.3
version: 0.3.2.4
synopsis: A deployment library for Haskell applications
description:
.
@ -47,8 +47,8 @@ library
, filepath >= 1.2 && < 1.5
, mtl >= 2.0 && < 3.0
, path >= 0.5 && < 0.7
, process >= 1.4 && < 1.5
, time >= 1.5 && < 1.8
, process >= 1.4 && < 1.7
, time >= 1.5 && < 1.9
, transformers >= 0.4 && < 0.6
if flag(dev)
ghc-options: -Wall -Werror
@ -60,6 +60,7 @@ executable hap
hs-source-dirs: app
main-is: Main.hs
other-modules: Config
, Paths_hapistrano
build-depends: aeson >= 0.11 && < 1.3
, async >= 2.0.1.6 && < 2.2
, base >= 4.6 && < 5.0
@ -88,7 +89,7 @@ test-suite test
, mtl >= 2.0 && < 3.0
, path >= 0.5 && < 0.7
, path-io >= 1.2 && < 1.4
, process >= 1.4 && < 1.5
, process >= 1.4 && < 1.7
, temporary >= 1.1 && < 1.3
if flag(dev)
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -Werror

View File

@ -1,3 +1,3 @@
resolver: lts-7.17
resolver: lts-9.0
packages:
- '.'