Committed by Greg Sabino Mullane <
gr...@endpoint.com>
Subject: [DBD::Pg 1/2] Prepare for version 3.5.3
---
Changes | 5 +++++
META.yml | 6 +++---
Makefile.PL | 2 +-
Pg.pm | 6 +++---
README | 2 +-
dbdimp.c | 2 +-
lib/Bundle/DBD/Pg.pm | 2 +-
7 files changed, 15 insertions(+), 10 deletions(-)
diff --git a/Changes b/Changes
index ef1011e..789c5c1 100644
--- a/Changes
+++ b/Changes
@@ -1,4 +1,9 @@
+Version 3.5.3 Released October 1, 2015
+
+ - Minor fix in the test file t/03dbmethod.t
+
+
Version 3.5.2 Released September 29, 2015 (git commit be8026c9160c4a29580a97dab57cb595c5448949)
- Fix enum value ordering on Postgres servers 9.1 and greater
diff --git a/META.yml b/META.yml
index 591059b..5d3283d 100644
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
--- #YAML:1.0
name : DBD-Pg
-version : 3.5.2
+version : 3.5.3
abstract : DBI PostgreSQL interface
author:
- Greg Sabino Mullane <
gr...@turnstep.com>
@@ -30,10 +30,10 @@ recommends:
provides:
DBD::Pg:
file : Pg.pm
- version : 3.5.2
+ version : 3.5.3
Bundle::DBD::Pg:
file : lib/Bundle/DBD/Pg.pm
- version : 3.5.2
+ version : 3.5.3
keywords:
- Postgres
diff --git a/Makefile.PL b/Makefile.PL
index 6b62aaa..31eed05 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -5,7 +5,7 @@ use warnings;
use 5.008001;
## No
version.pm for this one, as the prereqs are not loaded yet.
-my $VERSION = '3.5.2';
+my $VERSION = '3.5.3';
## App::Info is stored inside t/lib
## Create a proper path so we can use it below
diff --git a/Pg.pm b/Pg.pm
index 9a7e9b2..b01618d 100644
--- a/Pg.pm
+++ b/Pg.pm
@@ -16,7 +16,7 @@ use 5.008001;
{
package DBD::Pg;
- use version; our $VERSION = qv('3.5.2');
+ use version; our $VERSION = qv('3.5.3');
use DBI ();
use DynaLoader ();
@@ -1678,7 +1678,7 @@ DBD::Pg - PostgreSQL database driver for the DBI module
=head1 VERSION
-This documents version 3.5.2 of the DBD::Pg module
+This documents version 3.5.3 of the DBD::Pg module
=head1 DESCRIPTION
@@ -2740,7 +2740,7 @@ server version 9.0 or higher.
The C<ping> method determines if there is a working connection to an active
database server. It does this by sending a small query to the server, currently
-B<'DBD::Pg ping test v3.5.2'>. It returns 0 (false) if the connection is not valid,
+B<'DBD::Pg ping test v3.5.3'>. It returns 0 (false) if the connection is not valid,
otherwise it returns a positive number (true). The value returned indicates the
current state:
diff --git a/README b/README
index eeb745e..ac374bc 100644
--- a/README
+++ b/README
@@ -5,7 +5,7 @@ DBD::Pg -- the DBI PostgreSQL interface for Perl
DESCRIPTION:
------------
-This is version 3.5.2 of DBD::Pg, the Perl interface to Postgres using DBI.
+This is version 3.5.3 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/
diff --git a/dbdimp.c b/dbdimp.c
index 365e8d6..d364716 100644
--- a/dbdimp.c
+++ b/dbdimp.c
@@ -473,7 +473,7 @@ int dbd_db_ping (SV * dbh)
}
/* No matter what state we are in, send an empty query to the backend */
- result = PQexec(imp_dbh->conn, "/* DBD::Pg ping test v3.5.2 */");
+ result = PQexec(imp_dbh->conn, "/* DBD::Pg ping test v3.5.3 */");
if (NULL == result) {
/* Something very bad, usually indicating the backend is gone */
return -3;
diff --git a/lib/Bundle/DBD/Pg.pm b/lib/Bundle/DBD/Pg.pm
index e0a77be..3837d37 100644
--- a/lib/Bundle/DBD/Pg.pm
+++ b/lib/Bundle/DBD/Pg.pm
@@ -4,7 +4,7 @@ package Bundle::DBD::Pg;
use strict;
use warnings;
-$VERSION = '3.5.2';
+$VERSION = '3.5.3';
1;
--
1.8.4