Skip to content

Commit a66ec99

Browse files
committed
Remove cabal constraints
1 parent aa268c0 commit a66ec99

File tree

3 files changed

+28
-18
lines changed

3 files changed

+28
-18
lines changed

changelog.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
0.2.1.2 / 2017-11-26
2+
--------------------
3+
4+
- Remove version dependencies from cabal file, to be handled by the stackage ecosystem henceforth
5+
6+
0.2.1.1 / 2017-10-24
7+
--------------------
8+
9+
- Create an index to enhance session expiration performance
10+
111
0.2.1.0 / 2016-05-27
212
--------------------
313

stack.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# 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: nightly-2017-10-02
4+
resolver: nightly-2017-11-25
55

66
# Local packages, usually specified by relative directory name
77
packages:

wai-session-postgresql.cabal

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,18 @@ library
2020
hs-source-dirs: src
2121
exposed-modules: Network.Wai.Session.PostgreSQL
2222
build-depends: base >= 4.5 && < 5
23-
, bytestring >= 0.10.0.2 && < 0.11
24-
, cereal >= 0.4.1 && < 0.6
25-
, cookie >= 0.4.1 && < 0.5
26-
, data-default >= 0.5.1 && < 0.8
27-
, entropy >= 0.3 && < 0.4
28-
, postgresql-simple >= 0.4.0 && < 0.6
29-
, resource-pool >= 0.2.3 && < 0.3
30-
, text >= 0.11.3.1 && < 1.3
31-
, time >= 1.4.0.1 && < 1.9
32-
, transformers >= 0.3.0 && < 0.6
33-
, wai >= 3.0.2.3 && < 3.3
34-
, wai-session >= 0.3.2 && < 0.4
23+
, bytestring
24+
, cereal
25+
, cookie
26+
, data-default
27+
, entropy
28+
, postgresql-simple
29+
, resource-pool
30+
, text
31+
, time
32+
, transformers
33+
, wai
34+
, wai-session
3535
default-language: Haskell2010
3636
default-extensions: OverloadedStrings
3737

@@ -40,11 +40,11 @@ test-suite postgresql-session-test
4040
hs-source-dirs: test
4141
main-is: Spec.hs
4242
build-depends: base
43-
, bytestring >= 0.10.0.2 && < 0.11
44-
, data-default >= 0.5.1 && < 0.8
45-
, postgresql-simple >= 0.4.0 && < 0.6
46-
, text >= 0.11.3.1 && < 1.3
47-
, wai-session >= 0.3.2 && < 0.4
43+
, bytestring
44+
, data-default
45+
, postgresql-simple
46+
, text
47+
, wai-session
4848
, wai-session-postgresql
4949
ghc-options: -threaded -rtsopts -with-rtsopts=-N
5050
default-language: Haskell2010

0 commit comments

Comments
 (0)