[libdbd-pg-perl] 16/35: Bump version to 3.7.0

Christoph Berg myon at debian.org
Wed Sep 27 17:41:03 UTC 2017


This is an automated email from the git hooks/post-receive script.

myon pushed a commit to branch master
in repository libdbd-pg-perl.

commit 7ec02e5960aa6f6b3952cfb16705a8a08ba653cc
Author: Greg Sabino Mullane <greg at endpoint.com>
Date:   Wed Sep 20 16:35:48 2017 -0400

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

diff --git a/Changes b/Changes
index 585ee1e..23d48d3 100644
--- a/Changes
+++ b/Changes
@@ -1,4 +1,8 @@
 
+
+Version 3.7.0
+
+
   - If no placeholders, use PQexec instead of PQexecParams
     [Greg Sabino Mullane]
 
diff --git a/META.yml b/META.yml
index 00807ef..337bff5 100644
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name                        : DBD-Pg
-version                     : 3.6.2
+version                     : 3.7.0
 abstract                    : DBI PostgreSQL interface
 author:              
   - Greg Sabino Mullane <greg at turnstep.com>
@@ -30,10 +30,10 @@ recommends:
 provides:
   DBD::Pg:
     file                    : Pg.pm
-    version                 : 3.6.2
+    version                 : 3.7.0
   Bundle::DBD::Pg:
     file                    : lib/Bundle/DBD/Pg.pm
-    version                 : 3.6.2
+    version                 : 3.7.0
 
 keywords:
   - Postgres
diff --git a/Makefile.PL b/Makefile.PL
index 4560cd7..e5fc88f 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.6.2';
+my $VERSION = '3.7.0';
 
 ## 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 d77d176..02f044e 100644
--- a/Pg.pm
+++ b/Pg.pm
@@ -16,7 +16,7 @@ use 5.008001;
 {
 	package DBD::Pg;
 
-	use version; our $VERSION = qv('3.6.2');
+	use version; our $VERSION = qv('3.7.0');
 
 	use DBI ();
 	use DynaLoader ();
@@ -1682,7 +1682,7 @@ DBD::Pg - PostgreSQL database driver for the DBI module
 
 =head1 VERSION
 
-This documents version 3.6.2 of the DBD::Pg module
+This documents version 3.7.0 of the DBD::Pg module
 
 =head1 DESCRIPTION
 
@@ -2747,7 +2747,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.6.2'>. It returns 0 (false) if the connection is not valid, 
+B<'DBD::Pg ping test v3.7.0'>. 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 176aa50..270e04d 100644
--- a/README
+++ b/README
@@ -6,7 +6,7 @@ DBD::Pg  --  the DBI PostgreSQL interface for Perl
 DESCRIPTION:
 ------------
 
-This is version 3.6.2 of DBD::Pg, the Perl interface to Postgres using DBI. 
+This is version 3.7.0 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 a2157e2..9ed0525 100644
--- a/dbdimp.c
+++ b/dbdimp.c
@@ -489,7 +489,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.6.2 */");
+	result = PQexec(imp_dbh->conn, "/* DBD::Pg ping test v3.7.0 */");
 	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 efbf248..9fbabfe 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.6.2';
+$VERSION = '3.7.0';
 
 1;
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libdbd-pg-perl.git



More information about the Pkg-perl-cvs-commits mailing list