Skip to content

Commit 2c755b4

Browse files
committed
Relax upper bounds on data-default & transformers for ghc-8
Update stackage snapshot to nightly-2016-05-26
1 parent 75b2b88 commit 2c755b4

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

stack.yaml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
1-
# For more information, see: https://github.com/commercialhaskell/stack/blob/release/doc/yaml_configuration.md
1+
# For more information, see: http://docs.haskellstack.org/en/stable/yaml_configuration.html
22

33
# Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.2)
4-
resolver: lts-3.11
4+
resolver: nightly-2016-05-26
55

66
# Local packages, usually specified by relative directory name
77
packages:
88
- '.'
9-
109
# Packages to be pulled from upstream that are not in the resolver (e.g., acme-missiles-0.3)
11-
extra-deps:
12-
- wai-session-0.3.2
10+
extra-deps: []
1311

1412
# Override default flag values for local packages and extra-deps
1513
flags: {}
@@ -22,7 +20,7 @@ extra-package-dbs: []
2220

2321
# Require a specific version of stack, using version ranges
2422
# require-stack-version: -any # Default
25-
# require-stack-version: >= 0.1.4.0
23+
# require-stack-version: >= 1.0.0
2624

2725
# Override the architecture used by stack, especially useful on Windows
2826
# arch: i386
@@ -31,3 +29,6 @@ extra-package-dbs: []
3129
# Extra directories used by stack for building
3230
# extra-include-dirs: [/path/to/dir]
3331
# extra-lib-dirs: [/path/to/dir]
32+
33+
# Allow a newer minor version of GHC than the snapshot specifies
34+
# compiler-check: newer-minor

wai-session-postgresql.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ library
2323
, bytestring >= 0.10.0.2 && < 0.11
2424
, cereal >= 0.4.1 && < 0.6
2525
, cookie >= 0.4.1 && < 0.5
26-
, data-default >= 0.5.1 && < 0.7
26+
, data-default >= 0.5.1 && < 0.8
2727
, entropy >= 0.3 && < 0.4
2828
, postgresql-simple >= 0.4.0 && < 0.6
2929
, resource-pool >= 0.2.3 && < 0.3
3030
, text >= 0.11.3.1 && < 1.3
3131
, time >= 1.4.0.1 && < 1.7
32-
, transformers >= 0.3.0 && < 0.5
32+
, transformers >= 0.3.0 && < 0.6
3333
, wai >= 3.0.2.3 && < 3.3
3434
, wai-session >= 0.3.2 && < 0.4
3535
default-language: Haskell2010
@@ -41,7 +41,7 @@ test-suite postgresql-session-test
4141
main-is: Spec.hs
4242
build-depends: base
4343
, bytestring >= 0.10.0.2 && < 0.11
44-
, data-default >= 0.5.1 && < 0.6
44+
, data-default >= 0.5.1 && < 0.8
4545
, postgresql-simple >= 0.4.0 && < 0.6
4646
, text >= 0.11.3.1 && < 1.3
4747
, wai-session >= 0.3.2 && < 0.4

0 commit comments

Comments
 (0)