File tree Expand file tree Collapse file tree
src/Database/PostgreSQL/Simple Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change @@ -33,3 +33,4 @@ Amit Levy <amit@amitlevy.com>
3333Ben Gamari <ben@smart-cactus.org>
3434Edgar Gomes Araujo <talktoedgar@gmail.com>
3535Erik Hesselink <hesselink@gmail.com>
36+ Matvey Aksenov <matvey.aksenov@gmail.com>
Original file line number Diff line number Diff line change 11Name : postgresql-simple
2- Version : 0.5.2.1
2+ Version : 0.5.3.0
33Synopsis : Mid-Level PostgreSQL client library
44Description :
55 Mid-Level PostgreSQL client library , forked from mysql-simple.
@@ -90,7 +90,7 @@ source-repository head
9090source-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
9595test-suite test
9696 type : exitcode-stdio-1.0
Original file line number Diff line number Diff line change 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>
You can’t perform that action at this time.
0 commit comments