Skip to content

Commit c2e00bf

Browse files
committed
Version 0.5.3.0; CHANGES and CONTRIBUTORS
1 parent be85ee9 commit c2e00bf

4 files changed

Lines changed: 23 additions & 4 deletions

File tree

CHANGES.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
### Version 0.5.3.0 (2017-05-15)
2+
* Refactored some rudimentary cursor handling code out of the
3+
implementation of the fold operators, into a new
4+
`Database.PostgreSQL.Simple.Cursor` module, thanks to Bardur Arantsson.
5+
6+
* Made the `FromField` instance for `Char` compatible with
7+
postgresql's `bpchar` type. Thanks to Ivan Lazar Miljenovic for
8+
reporting the issue.
9+
10+
* Added `Show` and `Eq` instances for `Notification`, thanks to
11+
Matvey Aksenov.
12+
13+
* Fixed some example code, thanks to Matvey Aksenov.
14+
15+
* Fixed a problem with using `conversionError` to throw exceptions
16+
of type `SomeException`. Previously, the exception would be
17+
wrapped in a second `SomeException` dynamic constructor which
18+
would cause normal GHC typecase idioms over `SomeException` to fail.
19+
120
### Version 0.5.2.1 (2016-06-29)
221
* Bumped the lower bound for `base` to 4.6. Thanks to Herbert
322
Valerio Riedel for reporting the issue.

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,4 @@ Amit Levy <amit@amitlevy.com>
3333
Ben Gamari <ben@smart-cactus.org>
3434
Edgar Gomes Araujo <talktoedgar@gmail.com>
3535
Erik Hesselink <hesselink@gmail.com>
36+
Matvey Aksenov <matvey.aksenov@gmail.com>

postgresql-simple.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: postgresql-simple
2-
Version: 0.5.2.1
2+
Version: 0.5.3.0
33
Synopsis: Mid-Level PostgreSQL client library
44
Description:
55
Mid-Level PostgreSQL client library, forked from mysql-simple.
@@ -90,7 +90,7 @@ source-repository head
9090
source-repository this
9191
type: git
9292
location: http://github.com/lpsmith/postgresql-simple
93-
tag: v0.5.2.1
93+
tag: v0.5.3.0
9494

9595
test-suite test
9696
type: exitcode-stdio-1.0

src/Database/PostgreSQL/Simple/Cursor.hs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
------------------------------------------------------------------------------
44
-- |
55
-- Module: Database.PostgreSQL.Simple.Cursor
6-
-- Copyright: (c) 2011 MailRank, Inc.
7-
-- (c) 2011-2012 Leon P Smith
6+
-- Copyright: (c) 2011-2012 Leon P Smith
87
-- (c) 2017 Bardur Arantsson
98
-- License: BSD3
109
-- Maintainer: Leon P Smith <leon@melding-monads.com>

0 commit comments

Comments
 (0)