Skip to content

Commit 27b0c24

Browse files
committed
Fix version bounds on protolude to avoid error when compiling with 0.3
1 parent 39f2515 commit 27b0c24

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 0.8.0.1
4+
5+
- Fix compilation error due to missing version upper bound for protolude.
6+
37
## 0.8.0.0
48

59
- Added support for opening multiple channels at once and also issue tokens that allow multiple channels - thanks to @jamesmstone

postgres-websockets.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: postgres-websockets
2-
version: 0.8.0.0
2+
version: 0.8.0.1
33
synopsis: Middleware to map LISTEN/NOTIFY messages to Websockets
44
description: Please see README.md
55
homepage: https://github.com/diogob/postgres-websockets#readme
@@ -39,7 +39,7 @@ library
3939
, unordered-containers >= 0.2
4040
, postgresql-libpq >= 0.9 && < 1.0
4141
, aeson >= 1.4.6.0 && < 1.5
42-
, protolude >= 0.2.3
42+
, protolude >= 0.2.3 && < 0.3
4343
, hasql >= 1.4.1
4444
, hasql-notifications >= 0.1.0.0 && < 0.2
4545
, either >= 5.0.1.1 && < 5.1
@@ -69,7 +69,7 @@ executable postgres-websockets
6969
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
7070
build-depends: base >= 4.7 && < 5
7171
, postgres-websockets
72-
, protolude >= 0.2.3
72+
, protolude >= 0.2.3 && < 0.3
7373
default-language: Haskell2010
7474
default-extensions: OverloadedStrings, NoImplicitPrelude, QuasiQuotes
7575

@@ -82,7 +82,7 @@ test-suite postgres-websockets-test
8282
, HasqlBroadcastSpec
8383
, ServerSpec
8484
build-depends: base
85-
, protolude >= 0.2.3
85+
, protolude >= 0.2.3 && < 0.3
8686
, postgres-websockets
8787
, hspec >= 2.7.1 && < 2.8
8888
, hspec-wai >= 0.9.2 && < 0.10

0 commit comments

Comments
 (0)