Skip to content

Commit d588cef

Browse files
committed
Bumpity
1 parent aa50a61 commit d588cef

File tree

7 files changed

+177
-135
lines changed

7 files changed

+177
-135
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ cabal.sandbox.config
1111
.stack-work
1212
cabal.config
1313
TAGS
14+
/.ghc.environment.*
15+
dist-newstyle

.travis.yml

Lines changed: 154 additions & 126 deletions
Large diffs are not rendered by default.

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
5.7.0.2
2+
-------
3+
4+
* Bump dependencies.
5+
16
5.7.0.1
27
-------
38

cabal.project

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
packages: ./fgl.cabal
2+
fgl-arbitrary/fgl-arbitrary.cabal

fgl-arbitrary/ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
0.2.0.5
2+
-------
3+
4+
* QuickCheck and HSpec dependency bump
5+
16
0.2.0.4
27
-------
38

fgl-arbitrary/fgl-arbitrary.cabal

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: fgl-arbitrary
2-
version: 0.2.0.4
2+
version: 0.2.0.5
33
synopsis: QuickCheck support for fgl
44
description:
55
Provides Arbitrary instances for fgl graphs (to avoid adding a
@@ -20,7 +20,7 @@ extra-source-files: ChangeLog
2020

2121
tested-with: GHC == 7.0.4, GHC == 7.2.2, GHC == 7.4.2, GHC == 7.6.3,
2222
GHC == 7.8.4, GHC == 7.10.2, GHC == 8.0.1, GHC == 8.2.2,
23-
GHC == 8.4.3, GHC == 8.6.2
23+
GHC == 8.4.3, GHC == 8.6.2, GHC == 8.8.2, GHC == 8.10.1
2424

2525
source-repository head
2626
type: git
@@ -33,7 +33,7 @@ library
3333
-- other-extensions:
3434
build-depends: base < 5
3535
, fgl >= 5.5.2.0 && < 6
36-
, QuickCheck >= 2.3 && < 2.13
36+
, QuickCheck >= 2.3 && < 2.14
3737
-- hs-source-dirs:
3838
default-language: Haskell2010
3939

@@ -47,8 +47,8 @@ test-suite fgl-arbitrary-tests
4747
build-depends: fgl-arbitrary
4848
, fgl
4949
, base
50-
, QuickCheck >= 2.3 && < 2.13
51-
, hspec >= 2.1 && < 2.7
50+
, QuickCheck
51+
, hspec >= 2.1 && < 2.8
5252
, containers
5353

5454
hs-source-dirs: test

fgl.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: fgl
2-
version: 5.7.0.1
2+
version: 5.7.0.2
33
license: BSD3
44
license-file: LICENSE
55
author: Martin Erwig, Ivan Lazar Miljenovic
@@ -19,7 +19,7 @@ extra-source-files:
1919

2020
tested-with: GHC == 7.0.4, GHC == 7.2.2, GHC == 7.4.2, GHC == 7.6.3,
2121
GHC == 7.8.4, GHC == 7.10.2, GHC == 8.0.1, GHC == 8.2.2,
22-
GHC == 8.4.3, GHC == 8.6.2
22+
GHC == 8.4.3, GHC == 8.6.2, GHC == 8.8.2, GHC == 8.10.1
2323

2424
source-repository head
2525
type: git
@@ -91,8 +91,8 @@ test-suite fgl-tests {
9191

9292
build-depends: fgl
9393
, base
94-
, QuickCheck >= 2.8 && < 2.13
95-
, hspec >= 2.1 && < 2.7
94+
, QuickCheck >= 2.8 && < 2.14
95+
, hspec >= 2.1 && < 2.8
9696
, containers
9797

9898
hs-source-dirs: test

0 commit comments

Comments
 (0)