Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

[DBD::Pg 1/2] Ready to rollout version 3.5.1

2 views
Skip to first unread message

dbdpg-...@bucardo.org

unread,
Feb 17, 2015, 4:30:05 PM2/17/15
to dbd-pg-...@perl.org
Committed by Greg Sabino Mullane <gr...@endpoint.com>

Subject: [DBD::Pg 1/2] Ready to rollout version 3.5.1

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

diff --git a/Changes b/Changes
index efa28e9..02ebb5d 100644
--- a/Changes
+++ b/Changes
@@ -1,7 +1,7 @@
'GSM' is Greg Sabino Mullane, gr...@turnstep.com


-Version 3.5.1
+Version 3.5.1 Released February 17, 2015

- Prevent core dump if the second argument to the quote() method
is anything but a hashref
diff --git a/META.yml b/META.yml
index 41d7c8e..6510b9e 100644
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
--- #YAML:1.0
name : DBD-Pg
-version : 3.5.0_2
+version : 3.5.1
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.0_2
+ version : 3.5.1
Bundle::DBD::Pg:
file : lib/Bundle/DBD/Pg.pm
- version : 3.5.0_2
+ version : 3.5.1

keywords:
- Postgres
diff --git a/Makefile.PL b/Makefile.PL
index db66f5d..784e348 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.0_2';
+my $VERSION = '3.5.1';

## 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 938edd2..efe151a 100644
--- a/Pg.pm
+++ b/Pg.pm
@@ -16,7 +16,7 @@ use 5.008001;
{
package DBD::Pg;

- use version; our $VERSION = qv('3.5.0_2');
+ use version; our $VERSION = qv('3.5.1');

use DBI ();
use DynaLoader ();
@@ -1676,7 +1676,7 @@ DBD::Pg - PostgreSQL database driver for the DBI module

=head1 VERSION

-This documents version 3.5.0_2 of the DBD::Pg module
+This documents version 3.5.1 of the DBD::Pg module

=head1 DESCRIPTION

@@ -2738,7 +2738,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.0_2'>. It returns 0 (false) if the connection is not valid,
+B<'DBD::Pg ping test v3.5.1'>. 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 d350540..5ffccce 100644
--- a/README
+++ b/README
@@ -1,14 +1,3 @@
-
-===================================================
-WARNING!!
-
-THIS IS A TEST VERSION (3.5.0_2) AND SHOULD BE USED
-FOR TESTING PURPOSES ONLY. PLEASE USE A STABLE
-VERSION (no underscore) BY VISITING:
-
-http://search.cpan.org/dist/DBD-Pg/
-===================================================
-
DBD::Pg is Copyright (C) 1994-2015, Greg Sabino Mullane

DBD::Pg -- the DBI PostgreSQL interface for Perl
@@ -16,7 +5,7 @@ DBD::Pg -- the DBI PostgreSQL interface for Perl
DESCRIPTION:
------------

-This is version 3.5.0_2 of DBD::Pg, the Perl interface to Postgres using DBI.
+This is version 3.5.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/
diff --git a/dbdimp.c b/dbdimp.c
index 1bf5227..c6e8d56 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.0 */");
+ result = PQexec(imp_dbh->conn, "/* DBD::Pg ping test v3.5.1 */");
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 7e2f0cc..8cd2c2d 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.0_2';
+$VERSION = '3.5.1';

1;

--
1.8.4

dbdpg-...@bucardo.org

unread,
Feb 17, 2015, 4:30:05 PM2/17/15
to dbd-pg-...@perl.org
Committed by Greg Sabino Mullane <gr...@endpoint.com>

Subject: [DBD::Pg 2/2] Version 3.5.1

---
Changes | 2 +-
SIGNATURE | 20 ++++++++++----------
2 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/Changes b/Changes
index 02ebb5d..d14abd9 100644
--- a/Changes
+++ b/Changes
@@ -1,7 +1,7 @@
'GSM' is Greg Sabino Mullane, gr...@turnstep.com


-Version 3.5.1 Released February 17, 2015
+Version 3.5.1 Released February 17, 2015 (git commit 6c3457ee20c19ae492d29c490af6800e7e6a0774)

- Prevent core dump if the second argument to the quote() method
is anything but a hashref
diff --git a/SIGNATURE b/SIGNATURE
index 903eb12..1ded129 100644
--- a/SIGNATURE
+++ b/SIGNATURE
@@ -15,24 +15,24 @@ not run its Makefile.PL or Build.PL.
Hash: RIPEMD160

SHA1 6f4143600430e0bc949c17b05ac34844e5fb3ee4 .perlcriticrc
-SHA1 25e7ea30ab5ed139fb0108b38d59082bc99ac98e Changes
+SHA1 7fd50009ca75ffa163778593b7e80d6df1d76390 Changes
SHA1 21bc5f3c797d4d5b72285198ffeb1e4e1f0a2902 LICENSES/artistic.txt
SHA1 06877624ea5c77efe3b7e39b0f909eda6e25a4ec LICENSES/gpl-2.0.txt
SHA1 9c2b33069c9ceb7cd57ea0aeb7b8de144ab75672 MANIFEST
SHA1 8d2857ee9a6326c08507d8552f86709dd068fbe5 MANIFEST.SKIP
-SHA1 04b2df8217323866ff23661210896243c0a3e17e META.yml
-SHA1 898c78e8a99a327d6689139c7b960b6e2276278d Makefile.PL
+SHA1 51f67eaf226fbacb6481bdf1cd9ba2b1e60156bd META.yml
+SHA1 18a007634ef746e54755063a017dd05274c3ba1e Makefile.PL
SHA1 920964b687f475c0c89d208f7b0cf445cc75cfa5 Pg.h
-SHA1 939400f2d1c76752cb20a8480e62cb0d334fcda1 Pg.pm
+SHA1 c80599daa9f4d7bc0c1ea69733da2be9ebd130ca Pg.pm
SHA1 881347f6fd99e6327a7b752a9da49d2d245bcff6 Pg.xs
-SHA1 c823ccfc609508441c8a7eef4c13ba5a26357df6 README
+SHA1 f4a18e8d7b65ec7fbb99c6b263f5e15b9e60b977 README
SHA1 0332ac652afae7e53181e075ca446b88b8631ac6 README.dev
SHA1 7e213bf90f513595b59c0a2c4ef94fea1592efcf README.win32
SHA1 d1d664776d39011f328c21bef989b937d5d5b1db TODO
-SHA1 8d03767b2d6333acc78d6b4805a5af6bd6274910 dbdimp.c
+SHA1 f026a43c85faa98115cecfa4cb3939249610d761 dbdimp.c
SHA1 277805794455057c0b8c843b1169ed121a92ae75 dbdimp.h
SHA1 6c33bcf138e577722283bef02fceb8cbce4d100d dbivport.h
-SHA1 311f1f881b5ca1133e798a98477a473d4afc9b37 lib/Bundle/DBD/Pg.pm
+SHA1 48908ba26ca5d480c713932716ea31cc0e889d1e lib/Bundle/DBD/Pg.pm
SHA1 31be571044014a059db6e66f81e73b50a8abe086 quote.c
SHA1 931179894b8b48de407547a38ce0e034f75baaaa quote.h
SHA1 93aa7e8cae0a361d1e6163dea0281ebff41f3c5f t/00_signature.t
@@ -66,7 +66,7 @@ SHA1 3b6cb08c1f652a8648a5939751bbc380b3939504 types.h
SHA1 f07cd5ecaeb854c81ceb9206364979cf607e6546 win32.mak
-----BEGIN PGP SIGNATURE-----

-iEYEAREDAAYFAlTiQa8ACgkQvJuQZxSWSsi3fwCgmnj2wCQZ8aE+9n1WcQAYWJTd
-JrQAn2UjzXtGlwdnuthNiGn151delwe+
-=aPrH
+iEYEAREDAAYFAlTjsBsACgkQvJuQZxSWSshm2gCeNleZPlGqWsGQbAdLGs+r7xAS
+CuAAniw4aN/9Xi1rkGwbTx1hKoN2Biyn
+=jZjV
-----END PGP SIGNATURE-----
--
1.8.4

0 new messages