[svn:dbd-oracle] r15579 - in dbd-oracle/trunk: . lib/DBD lib/DBD/Oracle lib/DBD/Oracle/Troubleshooting

[email protected] Tue, 5 Mar 2013 07:35:33 -0800 (PST)
Newsgroups perl.dbd.oracle.changes
Message-ID <[email protected]>
Author: yanick
Date: Tue Mar  5 07:35:32 2013
New Revision: 15579

Modified:
   dbd-oracle/trunk/Changes
   dbd-oracle/trunk/META.json
   dbd-oracle/trunk/META.yml
   dbd-oracle/trunk/README
   dbd-oracle/trunk/README.mkdn
   dbd-oracle/trunk/lib/DBD/Oracle.pm
   dbd-oracle/trunk/lib/DBD/Oracle/GetInfo.pm
   dbd-oracle/trunk/lib/DBD/Oracle/Object.pm
   dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting.pod
   dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Aix.pod
   dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Cygwin.pod
   dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Hpux.pod
   dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Linux.pod
   dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Macos.pod
   dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Sun.pod
   dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Vms.pod
   dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Win32.pod
   dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Win64.pod

Log:
version bump to 1.58

Modified: dbd-oracle/trunk/Changes
==============================================================================
--- dbd-oracle/trunk/Changes	(original)
+++ dbd-oracle/trunk/Changes	Tue Mar  5 07:35:32 2013
@@ -1,5 +1,8 @@
 Revision history for DBD::Oracle
 
+1.58      2013-03-05
+ - promote 1.57_00 to official release
+
 1.57_00   2013-02-07
   [BUG FIXES]
 
@@ -7,11 +10,10 @@
     violation and RT82663 - Errors if a returned SYS_REFCURSOR is not
     opened (Martin J. Evans)
 
-    Fix RT82663.
-    If a procedure/function returns a SYS_REFCURSOR which was never opened
-    DBD::Oracle magics a DBI statement handle into existence and attempts
-    to describe it (which fails). This change examines a returned
-    SYS_REFCURSOR and if it it is initialised but not executed does not
+   -Fix RT82663. If a procedure/function returns a SYS_REFCURSOR which 
+    was never opened DBD::Oracle magics a DBI statement handle into 
+    existence and attempts to describe it (which fails). This change examines 
+    a returned SYS_REFCURSOR and if it it is initialised but not executed does not
     create a DBI statement handle and returns undef instead. So now if you
     have a procedure/function which returns a SYS_REFCURSOR and never open
     it you'll get undef back instead of a useless statement handle.

Modified: dbd-oracle/trunk/META.json
==============================================================================
--- dbd-oracle/trunk/META.json	(original)
+++ dbd-oracle/trunk/META.json	Tue Mar  5 07:35:32 2013
@@ -56,18 +56,18 @@
    "provides" : {
       "DBD::Oracle" : {
          "file" : "lib/DBD/Oracle.pm",
-         "version" : "1.57_00"
+         "version" : "1.58"
       },
       "DBD::Oracle::GetInfo" : {
          "file" : "lib/DBD/Oracle/GetInfo.pm",
-         "version" : "1.57_00"
+         "version" : "1.58"
       },
       "DBD::Oracle::Object" : {
          "file" : "lib/DBD/Oracle/Object.pm",
-         "version" : "1.57_00"
+         "version" : "1.58"
       }
    },
-   "release_status" : "testing",
+   "release_status" : "stable",
    "resources" : {
       "bugtracker" : {
          "mailto" : "bug-dbd-oracle at rt.cpan.org",
@@ -80,7 +80,7 @@
          "web" : "https://github.com/yanick/DBD-Oracle"
       }
    },
-   "version" : "1.57_00",
+   "version" : "1.58",
    "x_authority" : "cpan:PYTHIAN",
    "x_help_wanted" : [
       "coder",

Modified: dbd-oracle/trunk/META.yml
==============================================================================
--- dbd-oracle/trunk/META.yml	(original)
+++ dbd-oracle/trunk/META.yml	Tue Mar  5 07:35:32 2013
@@ -29,13 +29,13 @@
 provides:
   DBD::Oracle:
     file: lib/DBD/Oracle.pm
-    version: 1.57_00
+    version: 1.58
   DBD::Oracle::GetInfo:
     file: lib/DBD/Oracle/GetInfo.pm
-    version: 1.57_00
+    version: 1.58
   DBD::Oracle::Object:
     file: lib/DBD/Oracle/Object.pm
-    version: 1.57_00
+    version: 1.58
 requires:
   DBI: 0
   DynaLoader: 0
@@ -47,7 +47,7 @@
   bugtracker: http://rt.cpan.org/Public/Dist/Display.html?Name=DBD-Oracle
   homepage: http://search.cpan.org/dist/DBD-Oracle/
   repository: https://github.com/yanick/DBD-Oracle.git
-version: 1.57_00
+version: 1.58
 x_authority: cpan:PYTHIAN
 x_help_wanted:
   - coder

Modified: dbd-oracle/trunk/README
==============================================================================
--- dbd-oracle/trunk/README	(original)
+++ dbd-oracle/trunk/README	Tue Mar  5 07:35:32 2013
@@ -2,7 +2,7 @@
     DBD::Oracle - Oracle database driver for the DBI module
 
 VERSION
-    version 1.57_00
+    version 1.58
 
 SYNOPSIS
       use DBI;

Modified: dbd-oracle/trunk/README.mkdn
==============================================================================
--- dbd-oracle/trunk/README.mkdn	(original)
+++ dbd-oracle/trunk/README.mkdn	Tue Mar  5 07:35:32 2013
@@ -4,7 +4,7 @@
 
 # VERSION
 
-version 1.57\_00
+version 1.58
 
 # SYNOPSIS
 

Modified: dbd-oracle/trunk/lib/DBD/Oracle.pm
==============================================================================
--- dbd-oracle/trunk/lib/DBD/Oracle.pm	(original)
+++ dbd-oracle/trunk/lib/DBD/Oracle.pm	Tue Mar  5 07:35:32 2013
@@ -12,7 +12,7 @@
 {
 package DBD::Oracle;
 {
-  $DBD::Oracle::VERSION = '1.57_00';
+  $DBD::Oracle::VERSION = '1.58';
 }
 BEGIN {
   $DBD::Oracle::AUTHORITY = 'cpan:PYTHIAN';
@@ -1153,7 +1153,7 @@
 
 =head1 VERSION
 
-version 1.57_00
+version 1.58
 
 =head1 SYNOPSIS
 

Modified: dbd-oracle/trunk/lib/DBD/Oracle/GetInfo.pm
==============================================================================
--- dbd-oracle/trunk/lib/DBD/Oracle/GetInfo.pm	(original)
+++ dbd-oracle/trunk/lib/DBD/Oracle/GetInfo.pm	Tue Mar  5 07:35:32 2013
@@ -1,6 +1,6 @@
 package DBD::Oracle::GetInfo;
 {
-  $DBD::Oracle::GetInfo::VERSION = '1.57_00';
+  $DBD::Oracle::GetInfo::VERSION = '1.58';
 }
 BEGIN {
   $DBD::Oracle::GetInfo::AUTHORITY = 'cpan:PYTHIAN';
@@ -295,7 +295,7 @@
 
 =head1 VERSION
 
-version 1.57_00
+version 1.58
 
 =head1 AUTHORS
 

Modified: dbd-oracle/trunk/lib/DBD/Oracle/Object.pm
==============================================================================
--- dbd-oracle/trunk/lib/DBD/Oracle/Object.pm	(original)
+++ dbd-oracle/trunk/lib/DBD/Oracle/Object.pm	Tue Mar  5 07:35:32 2013
@@ -1,6 +1,6 @@
 package DBD::Oracle::Object;
 {
-  $DBD::Oracle::Object::VERSION = '1.57_00';
+  $DBD::Oracle::Object::VERSION = '1.58';
 }
 BEGIN {
   $DBD::Oracle::Object::AUTHORITY = 'cpan:PYTHIAN';
@@ -40,7 +40,7 @@
 
 =head1 VERSION
 
-version 1.57_00
+version 1.58
 
 =head1 AUTHORS
 

Modified: dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting.pod
==============================================================================
--- dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting.pod	(original)
+++ dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting.pod	Tue Mar  5 07:35:32 2013
@@ -11,7 +11,7 @@
 
 =head1 VERSION
 
-version 1.57_00
+version 1.58
 
 =head1 CONNECTING TO ORACLE
 

Modified: dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Aix.pod
==============================================================================
--- dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Aix.pod	(original)
+++ dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Aix.pod	Tue Mar  5 07:35:32 2013
@@ -11,7 +11,7 @@
 
 =head1 VERSION
 
-version 1.57_00
+version 1.58
 
 =head1 Using Visual Age 7 C Compiler 
 

Modified: dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Cygwin.pod
==============================================================================
--- dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Cygwin.pod	(original)
+++ dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Cygwin.pod	Tue Mar  5 07:35:32 2013
@@ -11,7 +11,7 @@
 
 =head1 VERSION
 
-version 1.57_00
+version 1.58
 
 =head1 General Info
 

Modified: dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Hpux.pod
==============================================================================
--- dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Hpux.pod	(original)
+++ dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Hpux.pod	Tue Mar  5 07:35:32 2013
@@ -11,7 +11,7 @@
 
 =head1 VERSION
 
-version 1.57_00
+version 1.58
 
 =head1 INTRODUCTION
 

Modified: dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Linux.pod
==============================================================================
--- dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Linux.pod	(original)
+++ dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Linux.pod	Tue Mar  5 07:35:32 2013
@@ -11,7 +11,7 @@
 
 =head1 VERSION
 
-version 1.57_00
+version 1.58
 
 =head1 Installing with Instantclient .rpm files.
 

Modified: dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Macos.pod
==============================================================================
--- dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Macos.pod	(original)
+++ dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Macos.pod	Tue Mar  5 07:35:32 2013
@@ -11,7 +11,7 @@
 
 =head1 VERSION
 
-version 1.57_00
+version 1.58
 
 =head1 General Info 
 

Modified: dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Sun.pod
==============================================================================
--- dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Sun.pod	(original)
+++ dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Sun.pod	Tue Mar  5 07:35:32 2013
@@ -11,7 +11,7 @@
 
 =head1 VERSION
 
-version 1.57_00
+version 1.58
 
 =head1 General Info
 

Modified: dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Vms.pod
==============================================================================
--- dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Vms.pod	(original)
+++ dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Vms.pod	Tue Mar  5 07:35:32 2013
@@ -11,7 +11,7 @@
 
 =head1 VERSION
 
-version 1.57_00
+version 1.58
 
 =head1 General Info
 

Modified: dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Win32.pod
==============================================================================
--- dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Win32.pod	(original)
+++ dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Win32.pod	Tue Mar  5 07:35:32 2013
@@ -11,7 +11,7 @@
 
 =head1 VERSION
 
-version 1.57_00
+version 1.58
 
 =head1 GENERAL INFO
 

Modified: dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Win64.pod
==============================================================================
--- dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Win64.pod	(original)
+++ dbd-oracle/trunk/lib/DBD/Oracle/Troubleshooting/Win64.pod	Tue Mar  5 07:35:32 2013
@@ -11,7 +11,7 @@
 
 =head1 VERSION
 
-version 1.57_00
+version 1.58
 
 =head1 DBD::Oracle and Windows 64bit