Author: turnstep Date: Wed Apr 7 13:52:54 2010 New Revision: 13896 Modified: DBD-Pg/trunk/Changes DBD-Pg/trunk/META.yml DBD-Pg/trunk/Makefile.PL DBD-Pg/trunk/Pg.pm DBD-Pg/trunk/README DBD-Pg/trunk/lib/Bundle/DBD/Pg.pm
Log: Bump to version 2.17.1 Modified: DBD-Pg/trunk/Changes ============================================================================== --- DBD-Pg/trunk/Changes (original) +++ DBD-Pg/trunk/Changes Wed Apr 7 13:52:54 2010 @@ -1,5 +1,10 @@ 'GSM' is Greg Sabino Mullane, [email protected]) +2.17.1 + + - Only use lo_import_with_oid if included Postgres is 84 or better + [GSM] (CPAN bug #56363) + 2.17.0 Released April 6, 2010 (subversion r13890) - Do not automatically ROLLBACK on a failed pg_cancel [GSM] (CPAN bug #55188) Modified: DBD-Pg/trunk/META.yml ============================================================================== --- DBD-Pg/trunk/META.yml (original) +++ DBD-Pg/trunk/META.yml Wed Apr 7 13:52:54 2010 @@ -1,6 +1,6 @@ --- #YAML:1.0 name : DBD-Pg -version : 2.17.0 +version : 2.17.1 abstract : DBI PostgreSQL interface author: - Greg Sabino Mullane <[email protected]> @@ -39,10 +39,10 @@ provides: DBD::Pg: file : Pg.pm - version : 2.17.0 + version : 2.17.1 Bundle::DBD::Pg: file : lib/Bundle/DBD/Pg.pm - version : 2.17.0 + version : 2.17.1 keywords: - Postgres Modified: DBD-Pg/trunk/Makefile.PL ============================================================================== --- DBD-Pg/trunk/Makefile.PL (original) +++ DBD-Pg/trunk/Makefile.PL Wed Apr 7 13:52:54 2010 @@ -7,7 +7,7 @@ use 5.006001; ## No version.pm for this one, as the prereqs are not loaded yet. -my $VERSION = '2.17.0'; +my $VERSION = '2.17.1'; my $lib; BEGIN { Modified: DBD-Pg/trunk/Pg.pm ============================================================================== --- DBD-Pg/trunk/Pg.pm (original) +++ DBD-Pg/trunk/Pg.pm Wed Apr 7 13:52:54 2010 @@ -17,7 +17,7 @@ { package DBD::Pg; - use version; our $VERSION = qv('2.17.0'); + use version; our $VERSION = qv('2.17.1'); use DBI (); use DynaLoader (); @@ -1732,7 +1732,7 @@ =head1 VERSION -This documents version 2.17.0 of the DBD::Pg module +This documents version 2.17.1 of the DBD::Pg module =head1 DESCRIPTION Modified: DBD-Pg/trunk/README ============================================================================== --- DBD-Pg/trunk/README (original) +++ DBD-Pg/trunk/README Wed Apr 7 13:52:54 2010 @@ -6,7 +6,7 @@ DESCRIPTION: ------------ -This is version 2.17.0 of DBD::Pg, the Perl interface to Postgres using DBI. +This is version 2.17.1 of DBD::Pg, the Perl interface to Postgres using DBI. The web site for this interface, and the latest version, can be found at: http://search.cpan.org/dist/DBD-Pg/ Modified: DBD-Pg/trunk/lib/Bundle/DBD/Pg.pm ============================================================================== --- DBD-Pg/trunk/lib/Bundle/DBD/Pg.pm (original) +++ DBD-Pg/trunk/lib/Bundle/DBD/Pg.pm Wed Apr 7 13:52:54 2010 @@ -4,7 +4,7 @@ use strict; use warnings; -$VERSION = '2.17.0'; +$VERSION = '2.17.1'; 1;
