Author: turnstep
Date: Thu Jan 17 14:43:17 2008
New Revision: 10594
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/README.dev
Log:
Bump version, get ready for RC2
Modified: DBD-Pg/trunk/Changes
==============================================================================
--- DBD-Pg/trunk/Changes (original)
+++ DBD-Pg/trunk/Changes Thu Jan 17 14:43:17 2008
@@ -1,6 +1,7 @@
('GSM' is Greg Sabino Mullane, [EMAIL PROTECTED])
2.0.0
+ - Be much more flexible in test connection options. [GSM]
- Skip item if no matching key in foreign_key_info.
(CPAN bug #32308) [GSM]
- Overhaul COPY functions: deprecate pg_getline, pg_putline,
Modified: DBD-Pg/trunk/META.yml
==============================================================================
--- DBD-Pg/trunk/META.yml (original)
+++ DBD-Pg/trunk/META.yml Thu Jan 17 14:43:17 2008
@@ -1,6 +1,6 @@
--- #YAML:1.0
name : DBD-Pg
-version : 2.0.0
+version : 2.0.0_2
abstract : DBI PostgreSQL interface
author:
- Greg Sabino Mullane <[EMAIL PROTECTED]>
Modified: DBD-Pg/trunk/Makefile.PL
==============================================================================
--- DBD-Pg/trunk/Makefile.PL (original)
+++ DBD-Pg/trunk/Makefile.PL Thu Jan 17 14:43:17 2008
@@ -6,7 +6,7 @@
use warnings;
use 5.006001;
-my $VERSION = '2.0.0_1';
+my $VERSION = '2.0.0_2';
my $lib;
BEGIN {
Modified: DBD-Pg/trunk/Pg.pm
==============================================================================
--- DBD-Pg/trunk/Pg.pm (original)
+++ DBD-Pg/trunk/Pg.pm Thu Jan 17 14:43:17 2008
@@ -17,7 +17,7 @@
{
package DBD::Pg;
- our $VERSION = '2.0.0_1';;
+ our $VERSION = '2.0.0_2';;
use DBI ();
use DynaLoader ();
@@ -1618,7 +1618,7 @@
=head1 VERSION
-This documents version 2.0.0 of the DBD::Pg module
+This documents version 2.0.0_2 of the DBD::Pg module
=head1 SYNOPSIS
Modified: DBD-Pg/trunk/README
==============================================================================
--- DBD-Pg/trunk/README (original)
+++ DBD-Pg/trunk/README Thu Jan 17 14:43:17 2008
@@ -1,3 +1,12 @@
+===================================================
+WARNING!!
+
+THIS IS A TEST VERSION (2.0.0_2) AND SHOULD BE USED
+FOR TESTING PURPOSES ONLY. PLEASE USE A STABLE
+VERSION (no underscore) BY VISITING:
+
+http://search.cpan.org/~dbdpg/
+===================================================
DBD::Pg -- the DBI PostgreSQL interface for Perl
@@ -6,7 +15,7 @@
DESCRIPTION:
------------
-This is version 2.0.0 of DBD-Pg. The web site for this interface is at:
+This is version 2.0.0_2 of DBD-Pg. The web site for this interface is at:
http://search.cpan.org/~dbdpg/
Modified: DBD-Pg/trunk/README.dev
==============================================================================
--- DBD-Pg/trunk/README.dev (original)
+++ DBD-Pg/trunk/README.dev Thu Jan 17 14:43:17 2008
@@ -491,10 +491,9 @@
indicate a change in functionality, new features, etc. The revision number is
used for small
tweaks and bug fixes, and must be completely compatible with the version
before it.
-Beta versions are simply the number *before* the new anticipated number, plus
an
-underscore to indicate the beta version. For example, if the current version
is
-2.1.4 and you are making betas for an upcoming 2.1.5 version, you should name
the
-beta version as 2.1.4_1. A second beta would be 2.1.4_2, etc.
+Beta versions are the vesion with an undercore at the end of it. The tells
CPAN not to consider
+this a "real" release. For example, if the upcoming release is 1.2.3, the
first release
+candidate would be 1.2.3_1. A second would be 1.2.3_2 etc.
Version numbers are currently set in five files: