Skip to content

Commit

Permalink
Version 0.5.3.0; CHANGES and CONTRIBUTORS
Browse files Browse the repository at this point in the history
  • Loading branch information
lpsmith committed May 15, 2017
1 parent be85ee9 commit c2e00bf
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 4 deletions.
19 changes: 19 additions & 0 deletions CHANGES.md
@@ -1,3 +1,22 @@
### Version 0.5.3.0 (2017-05-15)
* Refactored some rudimentary cursor handling code out of the
implementation of the fold operators, into a new
`Database.PostgreSQL.Simple.Cursor` module, thanks to Bardur Arantsson.

* Made the `FromField` instance for `Char` compatible with
postgresql's `bpchar` type. Thanks to Ivan Lazar Miljenovic for
reporting the issue.

* Added `Show` and `Eq` instances for `Notification`, thanks to
Matvey Aksenov.

* Fixed some example code, thanks to Matvey Aksenov.

* Fixed a problem with using `conversionError` to throw exceptions
of type `SomeException`. Previously, the exception would be
wrapped in a second `SomeException` dynamic constructor which
would cause normal GHC typecase idioms over `SomeException` to fail.

### Version 0.5.2.1 (2016-06-29)
* Bumped the lower bound for `base` to 4.6. Thanks to Herbert
Valerio Riedel for reporting the issue.
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS
Expand Up @@ -33,3 +33,4 @@ Amit Levy <amit@amitlevy.com>
Ben Gamari <ben@smart-cactus.org>
Edgar Gomes Araujo <talktoedgar@gmail.com>
Erik Hesselink <hesselink@gmail.com>
Matvey Aksenov <matvey.aksenov@gmail.com>
4 changes: 2 additions & 2 deletions postgresql-simple.cabal
@@ -1,5 +1,5 @@
Name: postgresql-simple
Version: 0.5.2.1
Version: 0.5.3.0
Synopsis: Mid-Level PostgreSQL client library
Description:
Mid-Level PostgreSQL client library, forked from mysql-simple.
Expand Down Expand Up @@ -90,7 +90,7 @@ source-repository head
source-repository this
type: git
location: http://github.com/lpsmith/postgresql-simple
tag: v0.5.2.1
tag: v0.5.3.0

test-suite test
type: exitcode-stdio-1.0
Expand Down
3 changes: 1 addition & 2 deletions src/Database/PostgreSQL/Simple/Cursor.hs
Expand Up @@ -3,8 +3,7 @@
------------------------------------------------------------------------------
-- |
-- Module: Database.PostgreSQL.Simple.Cursor
-- Copyright: (c) 2011 MailRank, Inc.
-- (c) 2011-2012 Leon P Smith
-- Copyright: (c) 2011-2012 Leon P Smith
-- (c) 2017 Bardur Arantsson
-- License: BSD3
-- Maintainer: Leon P Smith <leon@melding-monads.com>
Expand Down

0 comments on commit c2e00bf

Please sign in to comment.