[DBD::Pg 1/2] Bump version to 3.5.2

dbdpg-commits-gENoVmVU/[email protected] Wed, 19 Aug 2015 19:43:03 +0000
Newsgroups gmane.comp.db.postgresql.dbdpg.cvs
Message-ID <[email protected]>
Committed by Greg Sabino Mullane <greg-O9fzpki4YnJWk0Htik3J/[email protected]>

Subject: [DBD::Pg 1/2] Bump version to 3.5.2

---
 Changes              | 2 ++
 META.yml             | 6 +++---
 Makefile.PL          | 2 +-
 Pg.pm                | 6 +++---
 README               | 2 +-
 dbdimp.c             | 2 +-
 lib/Bundle/DBD/Pg.pm | 2 +-
 7 files changed, 12 insertions(+), 10 deletions(-)

diff --git a/Changes b/Changes
index 5dd0280..1070e2f 100644
--- a/Changes
+++ b/Changes
@@ -1,4 +1,6 @@
=20
+Version 3.5.2  Released ??
+
   - Fix enum value ordering on Postgres servers 9.1 and greater
     [Dagfinn Ilmari Manns=C3=A5ker]
=20
diff --git a/META.yml b/META.yml
index 6510b9e..0b9808f 100644
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name                        : DBD-Pg
-version                     : 3.5.1
+version                     : 3.5.2
 abstract                    : DBI PostgreSQL interface
 author:             =20
   - Greg Sabino Mullane <greg-738XdyZ4GzZWk0Htik3J/[email protected]>
@@ -30,10 +30,10 @@ recommends:
 provides:
   DBD::Pg:
     file                    : Pg.pm
-    version                 : 3.5.1
+    version                 : 3.5.2
   Bundle::DBD::Pg:
     file                    : lib/Bundle/DBD/Pg.pm
-    version                 : 3.5.1
+    version                 : 3.5.2
=20
 keywords:
   - Postgres
diff --git a/Makefile.PL b/Makefile.PL
index 784e348..6b62aaa 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -5,7 +5,7 @@ use warnings;
 use 5.008001;
=20
 ## No version.pm for this one, as the prereqs are not loaded yet.
-my $VERSION =3D '3.5.1';
+my $VERSION =3D '3.5.2';
=20
 ## 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 f5ec8a4..c08a444 100644
--- a/Pg.pm
+++ b/Pg.pm
@@ -16,7 +16,7 @@ use 5.008001;
 {
 	package DBD::Pg;
=20
-	use version; our $VERSION =3D qv('3.5.1');
+	use version; our $VERSION =3D qv('3.5.2');
=20
 	use DBI ();
 	use DynaLoader ();
@@ -1678,7 +1678,7 @@ DBD::Pg - PostgreSQL database driver for the DBI mo=
dule
=20
 =3Dhead1 VERSION
=20
-This documents version 3.5.1 of the DBD::Pg module
+This documents version 3.5.2 of the DBD::Pg module
=20
 =3Dhead1 DESCRIPTION
=20
@@ -2740,7 +2740,7 @@ server version 9.0 or higher.
=20
 The C<ping> method determines if there is a working connection to an act=
ive=20
 database server. It does this by sending a small query to the server, cu=
rrently=20
-B<'DBD::Pg ping test v3.5.1'>. It returns 0 (false) if the connection is=
 not valid,=20
+B<'DBD::Pg ping test v3.5.2'>. It returns 0 (false) if the connection is=
 not valid,=20
 otherwise it returns a positive number (true). The value returned indica=
tes the=20
 current state:
=20
diff --git a/README b/README
index 5ffccce..eeb745e 100644
--- a/README
+++ b/README
@@ -5,7 +5,7 @@ DBD::Pg  --  the DBI PostgreSQL interface for Perl
 DESCRIPTION:
 ------------
=20
-This is version 3.5.1 of DBD::Pg, the Perl interface to Postgres using D=
BI.=20
+This is version 3.5.2 of DBD::Pg, the Perl interface to Postgres using D=
BI.=20
 The web site for this interface, and the latest version, can be found at=
:
=20
 	http://search.cpan.org/dist/DBD-Pg/
diff --git a/dbdimp.c b/dbdimp.c
index 8e02225..365e8d6 100644
--- a/dbdimp.c
+++ b/dbdimp.c
@@ -473,7 +473,7 @@ int dbd_db_ping (SV * dbh)
 	}
=20
 	/* No matter what state we are in, send an empty query to the backend *=
/
-	result =3D PQexec(imp_dbh->conn, "/* DBD::Pg ping test v3.5.1 */");
+	result =3D PQexec(imp_dbh->conn, "/* DBD::Pg ping test v3.5.2 */");
 	if (NULL =3D=3D 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 8cd2c2d..e0a77be 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;
=20
-$VERSION =3D '3.5.1';
+$VERSION =3D '3.5.2';
=20
 1;
=20
--=20
1.8.4