Author: turnstep
Date: Thu Aug 28 19:25:40 2008
New Revision: 11685
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:
Version bump.
Modified: DBD-Pg/trunk/Changes
==============================================================================
--- DBD-Pg/trunk/Changes (original)
+++ DBD-Pg/trunk/Changes Thu Aug 28 19:25:40 2008
@@ -1,5 +1,9 @@
('GSM' is Greg Sabino Mullane, [EMAIL PROTECTED])
+2.10.1
+
+ - Minor testing fix.
+
2.10.0 Released August 26, 2008 (subversion r11678)
- Add the 'DBD' trace setting to output only non-DBI trace messages,
@@ -431,8 +435,7 @@
- Added explicit support for types SQL_BOOLEAN, DATE, TIME,
TIMESTAMP, and TIMESTAMPTZ. Return correct values for
DATEOID and TIMEOID. [GSM]
- - Added tablespace support for table_info and primary_key_info.
- [GSM]
+ - Added tablespace support for table_info and primary_key_info. [GSM]
- Added new attributes to $dbh: pg_db, pg_user, pg_pass,
pg_host, pg_port, pg_options, pg_socket, pg_pid [GSM]
- Minor fixes in quote.c, dbdimp.c, and types.h
@@ -446,10 +449,8 @@
- dbdimp.c cleanups: better error messages, ensure commit
is only called once after a transaction fails.
[Alexey Slynko]
- - primary_key() returns empty list not undef if no match.
- [Julian Mehnle]
- - Added the pg_protocol database handle attribute
- [GSM]
+ - primary_key() returns empty list not undef if no match. [Julian
Mehnle]
+ - Added the pg_protocol database handle attribute [GSM]
- Changed "noprefix" to pg_noprefix
1.32 Wed Feb 25 18:24:18 UTC 2004
Modified: DBD-Pg/trunk/META.yml
==============================================================================
--- DBD-Pg/trunk/META.yml (original)
+++ DBD-Pg/trunk/META.yml Thu Aug 28 19:25:40 2008
@@ -1,6 +1,6 @@
--- #YAML:1.0
name : DBD-Pg
-version : 2.10.0
+version : 2.10.1
abstract : DBI PostgreSQL interface
author:
- Greg Sabino Mullane <[EMAIL PROTECTED]>
@@ -38,10 +38,10 @@
provides:
DBD::Pg:
file : Pg.pm
- version : 2.10.0
+ version : 2.10.1
Bundle::DBD::Pg:
file : lib/Bundle/DBD/Pg.pm
- version : 2.10.0
+ version : 2.10.1
keywords:
- Postgres
Modified: DBD-Pg/trunk/Makefile.PL
==============================================================================
--- DBD-Pg/trunk/Makefile.PL (original)
+++ DBD-Pg/trunk/Makefile.PL Thu Aug 28 19:25:40 2008
@@ -7,7 +7,7 @@
use 5.006001;
## No version.pm for this one, as the prereqs are not loaded yet.
-my $VERSION = '2.10.0';
+my $VERSION = '2.10.1';
my $lib;
BEGIN {
Modified: DBD-Pg/trunk/Pg.pm
==============================================================================
--- DBD-Pg/trunk/Pg.pm (original)
+++ DBD-Pg/trunk/Pg.pm Thu Aug 28 19:25:40 2008
@@ -17,7 +17,7 @@
{
package DBD::Pg;
- use version; our $VERSION = qv('2.10.0');
+ use version; our $VERSION = qv('2.10.1');
use DBI ();
use DynaLoader ();
@@ -1703,7 +1703,7 @@
=head1 VERSION
-This documents version 2.10.0 of the DBD::Pg module
+This documents version 2.10.1 of the DBD::Pg module
=head1 DESCRIPTION
Modified: DBD-Pg/trunk/README
==============================================================================
--- DBD-Pg/trunk/README (original)
+++ DBD-Pg/trunk/README Thu Aug 28 19:25:40 2008
@@ -6,7 +6,7 @@
DESCRIPTION:
------------
-This is version 2.10.0 of DBD::Pg, the Perl interface to Postgres using DBI.
+This is version 2.10.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 Thu Aug 28 19:25:40 2008
@@ -4,7 +4,7 @@
use strict;
use warnings;
-$VERSION = '2.10.0';
+$VERSION = '2.10.1';
1;