Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 0.09.
Browse files Browse the repository at this point in the history
Changelog diff is:

diff --git a/Changes b/Changes
index 83da2b2..7b60b9a 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,25 @@ Revision history for Perl extension Data::Difflet

 {{$NEXT}}

+0.09 2013-07-24T04:05:04Z
+
+
+    ommit 1b43a2b
+    Author: HIROSE Masaaki <hirose31@gmail.com>
+    Date:   Tue Jul 23 22:15:15 2013 +0900
+
+        Enable difflet_is_deeply when run tests by prove
+
+    commit fc04820
+    Author: HIROSE Masaaki <hirose31@gmail.com>
+    Date:   Tue Jul 23 22:20:04 2013 +0900
+
+        Override Test::More::is_deeply when use with "qw(is_deeply)"
+
+        I want to use difflet_is_deeply as is_deeply personally so I added
+        '''--exec "perl -Ilib -MTest::Difflet=is_deeply"''' to my ~/.proverc
+        but no effect.
+
 0.08 2013-05-19T13:17:19Z

     Author: Takumi Akiyama <t.akiym@gmail.com>
  • Loading branch information
tokuhirom committed Jul 24, 2013
1 parent 98cdf0d commit 4176e29
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 5 deletions.
3 changes: 2 additions & 1 deletion Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@ my %args = (

name => 'Data-Difflet',
module_name => 'Data::Difflet',
allow_pure_perl => 0,
allow_pureperl => 0,

script_files => [glob('script/*'), glob('bin/*')],
c_source => [qw()],

test_files => ((-d '.git' || $ENV{RELEASE_TESTING}) && -d 'xt') ? 't/ xt/' : 't/',
recursive_test_files => 1,
Expand Down
19 changes: 19 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@ Revision history for Perl extension Data::Difflet

{{$NEXT}}

0.09 2013-07-24T04:05:04Z


ommit 1b43a2b26547c3f8a3f499bde255f63647f06aad
Author: HIROSE Masaaki <hirose31@gmail.com>
Date: Tue Jul 23 22:15:15 2013 +0900

Enable difflet_is_deeply when run tests by prove

commit fc04820fffac844fa5638a61e306622915c42f13
Author: HIROSE Masaaki <hirose31@gmail.com>
Date: Tue Jul 23 22:20:04 2013 +0900

Override Test::More::is_deeply when use with "qw(is_deeply)"

I want to use difflet_is_deeply as is_deeply personally so I added
'''--exec "perl -Ilib -MTest::Difflet=is_deeply"''' to my ~/.proverc
but no effect.

0.08 2013-05-19T13:17:19Z

Author: Takumi Akiyama <t.akiym@gmail.com>
Expand Down
7 changes: 4 additions & 3 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"Tokuhiro Matsuno <tokuhirom AAJKLFJEF@ GMAIL COM>"
],
"dynamic_config" : 0,
"generated_by" : "Minilla/v0.4.3, CPAN::Meta::Converter version 2.130880",
"generated_by" : "Minilla/v0.5.5, CPAN::Meta::Converter version 2.130880",
"license" : [
"perl_5"
],
Expand Down Expand Up @@ -37,7 +37,7 @@
"Test::CPAN::Meta" : "0",
"Test::MinimumVersion" : "0.10108",
"Test::Pod" : "1.41",
"Test::Spellunker" : "v0.2.2"
"Test::Spellunker" : "v0.2.7"
}
},
"runtime" : {
Expand Down Expand Up @@ -66,12 +66,13 @@
"web" : "https://github.com/tokuhirom/Data-Difflet"
}
},
"version" : "0.08",
"version" : "0.09",
"x_contributors" : [
"Syohei YOSHIDA <syohex@gmail.com>",
"Olaf Alders <olaf@wundersolutions.com>",
"Kozaki, Tsuneaki <kozaki.tsuneaki@gmail.com>",
"Takumi Akiyama <t.akiym@gmail.com>",
"HIROSE Masaaki <hirose31@gmail.com>",
"tokuhirom <tokuhirom@gmail.com>"
]
}
2 changes: 1 addition & 1 deletion lib/Data/Difflet.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Data::Difflet;
use strict;
use warnings FATAL => 'recursion';
use 5.008008;
our $VERSION = '0.08';
our $VERSION = '0.09';
use Term::ANSIColor;
use Data::Dumper;

Expand Down

0 comments on commit 4176e29

Please sign in to comment.