r66857 - in /branches/upstream/libdatetime-format-flexible-perl/current: Changes META.yml lib/DateTime/Format/Flexible.pm t/data/tests.txt t/no_year.t t/parsing.t

carnil at users.alioth.debian.org carnil at users.alioth.debian.org
Mon Jan 3 09:17:12 UTC 2011


Author: carnil
Date: Mon Jan  3 09:16:32 2011
New Revision: 66857

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=66857
Log:
[svn-upgrade] new version libdatetime-format-flexible-perl (0.18)

Modified:
    branches/upstream/libdatetime-format-flexible-perl/current/Changes
    branches/upstream/libdatetime-format-flexible-perl/current/META.yml
    branches/upstream/libdatetime-format-flexible-perl/current/lib/DateTime/Format/Flexible.pm
    branches/upstream/libdatetime-format-flexible-perl/current/t/data/tests.txt
    branches/upstream/libdatetime-format-flexible-perl/current/t/no_year.t
    branches/upstream/libdatetime-format-flexible-perl/current/t/parsing.t

Modified: branches/upstream/libdatetime-format-flexible-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdatetime-format-flexible-perl/current/Changes?rev=66857&op=diff
==============================================================================
--- branches/upstream/libdatetime-format-flexible-perl/current/Changes (original)
+++ branches/upstream/libdatetime-format-flexible-perl/current/Changes Mon Jan  3 09:16:32 2011
@@ -1,6 +1,9 @@
 Revision history for Perl module DateTime::Format::Flexible
 
-0.17
+0.18 Sat Jan 01 2010
+   - move a test that was hardcoded to a year to the no_year tests. (thanks cpantesters)
+
+0.17 Tue Oct 26 2010
    - more formats supported
    - support timezone offsets that are not at the end of the datetime string.
      - they must be 4 digits and begin with a plus or minus

Modified: branches/upstream/libdatetime-format-flexible-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdatetime-format-flexible-perl/current/META.yml?rev=66857&op=diff
==============================================================================
--- branches/upstream/libdatetime-format-flexible-perl/current/META.yml (original)
+++ branches/upstream/libdatetime-format-flexible-perl/current/META.yml Mon Jan  3 09:16:32 2011
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               DateTime-Format-Flexible
-version:            0.17
+version:            0.18
 abstract:           DateTime::Format::Flexible - Flexibly parse strings and turn them into DateTime objects.
 author:
     - Tom Heady (cpan at punch.net)
@@ -22,7 +22,7 @@
     directory:
         - t
         - inc
-generated_by:       ExtUtils::MakeMaker version 6.55_02
+generated_by:       ExtUtils::MakeMaker version 6.56
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4

Modified: branches/upstream/libdatetime-format-flexible-perl/current/lib/DateTime/Format/Flexible.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdatetime-format-flexible-perl/current/lib/DateTime/Format/Flexible.pm?rev=66857&op=diff
==============================================================================
--- branches/upstream/libdatetime-format-flexible-perl/current/lib/DateTime/Format/Flexible.pm (original)
+++ branches/upstream/libdatetime-format-flexible-perl/current/lib/DateTime/Format/Flexible.pm Mon Jan  3 09:16:32 2011
@@ -2,7 +2,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '0.17';
+our $VERSION = '0.18';
 
 use base 'DateTime::Format::Builder';
 

Modified: branches/upstream/libdatetime-format-flexible-perl/current/t/data/tests.txt
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdatetime-format-flexible-perl/current/t/data/tests.txt?rev=66857&op=diff
==============================================================================
--- branches/upstream/libdatetime-format-flexible-perl/current/t/data/tests.txt (original)
+++ branches/upstream/libdatetime-format-flexible-perl/current/t/data/tests.txt Mon Jan  3 09:16:32 2011
@@ -2931,7 +2931,6 @@
 4:50:54DeCember10/65 => 2065-12-10T04:50:54
 4:50:54DeCember1965 => 2065-12-19T04:50:54
 121065 at 5:30:25 => 2065-12-10T05:30:25
-february 1st => 2010-02-01T00:00:00
 December 1st, 2006 => 2006-12-01T00:00:00
 2006 December 1st => 2006-12-01T00:00:00
 December first, 2006 => 2006-12-01T00:00:00

Modified: branches/upstream/libdatetime-format-flexible-perl/current/t/no_year.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdatetime-format-flexible-perl/current/t/no_year.t?rev=66857&op=diff
==============================================================================
--- branches/upstream/libdatetime-format-flexible-perl/current/t/no_year.t (original)
+++ branches/upstream/libdatetime-format-flexible-perl/current/t/no_year.t Mon Jan  3 09:16:32 2011
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 33;
+use Test::More tests => 34;
 use DateTime;
 
 use t::lib::helper;
@@ -46,4 +46,6 @@
     "4:50:54DeCember10 => $curr_year-12-10T04:50:54",
     "4:50DeC10 => $curr_year-12-10T04:50:00",
     "4:50DeCember10 => $curr_year-12-10T04:50:00",
+
+    "february 1st => $curr_year-02-01T00:00:00",
 );

Modified: branches/upstream/libdatetime-format-flexible-perl/current/t/parsing.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdatetime-format-flexible-perl/current/t/parsing.t?rev=66857&op=diff
==============================================================================
--- branches/upstream/libdatetime-format-flexible-perl/current/t/parsing.t (original)
+++ branches/upstream/libdatetime-format-flexible-perl/current/t/parsing.t Mon Jan  3 09:16:32 2011
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 8000;
+use Test::More tests => 7999;
 use File::Spec::Functions 'catfile';
 
 use t::lib::helper;




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