Skip to content

Commit

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

diff --git a/Changes b/Changes
index 767b55b..f507f9c 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,10 @@ Revision history for Perl module Smart::Args

 {{$NEXT}}

+0.12 2013-11-21T01:22:21Z
+
+    - Fixed a bug in test case.
+
 0.11 2013-11-20T04:43:18Z

     - minil migrate
  • Loading branch information
tokuhirom committed Nov 21, 2013
1 parent 258bfe0 commit 65a641a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ Revision history for Perl module Smart::Args

{{$NEXT}}

0.12 2013-11-21T01:22:21Z

- Fixed a bug in test case.

0.11 2013-11-20T04:43:18Z

- minil migrate
Expand Down
2 changes: 1 addition & 1 deletion META.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"web" : "https://github.com/tokuhirom/Smart-Args"
}
},
"version" : "0.11",
"version" : "0.12",
"x_contributors" : [
"Fuji, Goro <gfuji@cpan.org>",
"Neil Bowers <neil@bowers.com>"
Expand Down
2 changes: 1 addition & 1 deletion lib/Smart/Args.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Smart::Args;
use strict;
use warnings;
use 5.008001;
our $VERSION = '0.11';
our $VERSION = '0.12';
use Exporter 'import';
use PadWalker qw/var_name/;
use Carp ();
Expand Down
2 changes: 1 addition & 1 deletion t/010_simple/09_nested.t
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use Smart::Args;
use Test::More;
use t::Util;

throws_ok { foo(bar => 3.14) } qr/@{[ __FILE__ ]}/;
throws_ok { foo(bar => 3.14) } qr/@{[ quotemeta(__FILE__) ]}/;
note $@;
done_testing;
exit;
Expand Down

0 comments on commit 65a641a

Please sign in to comment.