diff --git a/Makefile.PL b/Makefile.PL index 2d9e270..8532400 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -12,7 +12,7 @@ WriteMakefile( provides => { 'Util::H2O' => { file => 'lib/Util/H2O.pm', - version => '0.20', + version => '0.22', }, }, resources => { diff --git a/lib/Util/H2O.pm b/lib/Util/H2O.pm index a43e8b5..6cef713 100644 --- a/lib/Util/H2O.pm +++ b/lib/Util/H2O.pm @@ -40,7 +40,7 @@ Util::H2O - Hash to Object: turns hashrefs into objects with accessors for keys =cut -our $VERSION = '0.20'; +our $VERSION = '0.22'; # For AUTHOR, COPYRIGHT, AND LICENSE see the bottom of this file our @EXPORT = qw/ h2o /; ## no critic (ProhibitAutomaticExportation) diff --git a/t/Util-H2O.t b/t/Util-H2O.t index db11e50..afbe4c8 100755 --- a/t/Util-H2O.t +++ b/t/Util-H2O.t @@ -31,7 +31,7 @@ sub warns (&) { my @w; { local $SIG{__WARN__} = sub { push @w, shift }; shift->( diag "This is Perl $] at $^X on $^O"; BEGIN { use_ok 'Util::H2O' } -is $Util::H2O::VERSION, '0.20'; +is $Util::H2O::VERSION, '0.22'; diag "If all tests pass, you can ignore the \"this Perl is too old\" warnings" if $] lt '5.008009';