Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
* Support GHC 8.10
* (Revision 1, 2022-11-30) Support GHC 9.0
* (Revision 2, 2023-02-03) Support GHC 9.2
* (Revision 3, unreleased) Support GHC 9.8 and other package updates

## 0.2.0.4 -- 2019-11-28

Expand Down
10 changes: 5 additions & 5 deletions streaming-postgresql-simple.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ library
exposed-modules:
Database.PostgreSQL.Simple.Streaming
build-depends:
base >=4.9 && <4.17,
bytestring >=0.10.8.1 && <0.12,
base >=4.9 && <4.20,
bytestring >=0.10.8.1 && <0.13,
exceptions >=0.8.3 && <0.11,
postgresql-libpq >=0.9.2.0 && <0.10,
postgresql-simple >=0.5 && <0.7,
postgresql-libpq >=0.9.2.0 && <0.11,
postgresql-simple >=0.5 && <0.8,
resourcet >=1.1.8.1 && <1.4,
safe-exceptions >=0.1.4.0 && <0.2,
streaming >=0.1 && <0.3,
transformers >=0.5.2.0 && <0.6
transformers >=0.5.2.0 && <0.7
default-language: Haskell2010
other-extensions: BangPatterns OverloadedStrings RecordWildCards
ScopedTypeVariables
Expand Down