Skip to content

Commit d6bab27

Browse files
committed
Merge branch 'release/1.3.1' into production
2 parents 71a8e75 + d0bcf56 commit d6bab27

File tree

3 files changed

+8
-4
lines changed

3 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+
## 1.3.1
4+
### Changed
5+
* work with `hset-1.0.0`
6+
37
## 1.3.0
48
### Added
59
* dependency from `hreader` and `hset`

postgresql-query.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: postgresql-query
2-
version: 1.3.0
2+
version: 1.3.1
33

44
synopsis: Sql interpolating quasiquote plus some kind of primitive ORM
55
using it
@@ -68,8 +68,8 @@ library
6868
, exceptions
6969
, file-embed
7070
, haskell-src-meta
71-
, hreader
72-
, hset >= 0.1.0
71+
, hreader >= 0.1.0 && < 1.0.0
72+
, hset >= 1.0.0 && < 2.0.0
7373
, monad-control == 0.3.3.1 || > 1.0.0.3
7474
, monad-logger
7575
, mtl

src/Database/PostgreSQL/Query/Types.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ instance (HasPostgres m, Monoid w) => HasPostgres (WS.WriterT w m) where
262262
WS.runWriterT (action con)
263263
{-# INLINABLE withPGConnection #-}
264264

265-
instance (MonadBase IO m, MonadBaseControl IO m, Contains els (Pool Connection))
265+
instance (MonadBase IO m, MonadBaseControl IO m, HGetable els (Pool Connection))
266266
=> HasPostgres (HReaderT els m) where
267267
withPGConnection action = do
268268
pool <- haskM

0 commit comments

Comments
 (0)