r66531 - in /branches/upstream/libdancer-plugin-database-perl/current: Changes META.yml lib/Dancer/Plugin/Database.pm lib/Dancer/Plugin/Database/Handle.pm

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Tue Dec 28 00:15:25 UTC 2010


Author: jawnsy-guest
Date: Tue Dec 28 00:13:43 2010
New Revision: 66531

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=66531
Log:
[svn-upgrade] new version libdancer-plugin-database-perl (0.91)

Modified:
    branches/upstream/libdancer-plugin-database-perl/current/Changes
    branches/upstream/libdancer-plugin-database-perl/current/META.yml
    branches/upstream/libdancer-plugin-database-perl/current/lib/Dancer/Plugin/Database.pm
    branches/upstream/libdancer-plugin-database-perl/current/lib/Dancer/Plugin/Database/Handle.pm

Modified: branches/upstream/libdancer-plugin-database-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-plugin-database-perl/current/Changes?rev=66531&op=diff
==============================================================================
--- branches/upstream/libdancer-plugin-database-perl/current/Changes (original)
+++ branches/upstream/libdancer-plugin-database-perl/current/Changes Tue Dec 28 00:13:43 2010
@@ -1,10 +1,14 @@
 Revision history for Dancer-Plugin-Database
+
+0.91    2010-12-21
+        - Whoah - didn't "use strict" in Dancer::Plugin::Database::Handle!
+          Last tweak release, then I'll push 1.00 out soon.
 
 0.90    2010-12-10
         - New features quick_insert, quick_update, quick_delete.  The database
           keyword now returns a Dancer::Plugin::Database::Handle object, which
           is a subclass of DBI::db so does everything you'd expect a DBI
-          connection handle to do, but add extra convenience methods.
+          connection handle to do, but adds extra convenience methods.
         - Fixed test failures on Windows systems.
 
        (Large version bump due to new features; assuming there are no reports of

Modified: branches/upstream/libdancer-plugin-database-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-plugin-database-perl/current/META.yml?rev=66531&op=diff
==============================================================================
--- branches/upstream/libdancer-plugin-database-perl/current/META.yml (original)
+++ branches/upstream/libdancer-plugin-database-perl/current/META.yml Tue Dec 28 00:13:43 2010
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Dancer-Plugin-Database
-version:            0.90
+version:            0.91
 abstract:           easy database connections for Dancer applications
 author:
     - David Precious <davidp at preshweb.co.uk>

Modified: branches/upstream/libdancer-plugin-database-perl/current/lib/Dancer/Plugin/Database.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-plugin-database-perl/current/lib/Dancer/Plugin/Database.pm?rev=66531&op=diff
==============================================================================
--- branches/upstream/libdancer-plugin-database-perl/current/lib/Dancer/Plugin/Database.pm (original)
+++ branches/upstream/libdancer-plugin-database-perl/current/lib/Dancer/Plugin/Database.pm Tue Dec 28 00:13:43 2010
@@ -11,7 +11,7 @@
 
 =cut
 
-our $VERSION = '0.90';
+our $VERSION = '0.91';
 
 my $settings = undef;
 

Modified: branches/upstream/libdancer-plugin-database-perl/current/lib/Dancer/Plugin/Database/Handle.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-plugin-database-perl/current/lib/Dancer/Plugin/Database/Handle.pm?rev=66531&op=diff
==============================================================================
--- branches/upstream/libdancer-plugin-database-perl/current/lib/Dancer/Plugin/Database/Handle.pm (original)
+++ branches/upstream/libdancer-plugin-database-perl/current/lib/Dancer/Plugin/Database/Handle.pm Tue Dec 28 00:13:43 2010
@@ -1,10 +1,11 @@
 package Dancer::Plugin::Database::Handle;
 
+use strict;
 use Carp;
 use DBI;
 use base qw(DBI::db);
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 =head1 NAME
 




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