Skip to content

Commit

Permalink
Update dependencies to include newer Cabal
Browse files Browse the repository at this point in the history
The upper bound on Cabal has been increased. The lower bound on Cabal
has also been increased, to avoid a mismatch between the newest version
and the one that comes bundled with GHC: the test runner tended to
switch back to the old Cabal, but generates a stub which is only
compatible with the new one. For now, use of this package in a test
suite will require an appropriately high lower bound on Cabal.

The testing GHC options now include -Werror to act as a better testing
example, and the version number is bumped for release.
  • Loading branch information
zmthy committed Jan 29, 2015
1 parent e4eb434 commit a786efd
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions cabal-test-quickcheck.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: cabal-test-quickcheck
version: 0.1.3-pre
version: 0.1.3
license: MIT
license-file: LICENSE
author: Timothy Jones
Expand All @@ -24,9 +24,9 @@ library
Distribution.TestSuite.QuickCheck

build-depends:
base >= 4.6.0 && < 4.8,
Cabal >= 1.16.0 && < 1.21,
QuickCheck >= 2.6 && < 2.8
base >= 4.6 && < 4.8,
Cabal >= 1.16 && < 1.23,
QuickCheck >= 2.6 && < 2.8

test-suite example
type: detailed-0.9
Expand All @@ -35,9 +35,11 @@ test-suite example
hs-source-dirs: test
default-language: Haskell2010

ghc-options: -Wall -Werror

build-depends:
base >= 4.6 && < 4.8,
Cabal >= 1.20 && < 1.21,
Cabal >= 1.19 && < 1.23,
cabal-test-quickcheck

source-repository head
Expand Down

0 comments on commit a786efd

Please sign in to comment.