Skip to content

Commit

Permalink
Bump version number to 0.22
Browse files Browse the repository at this point in the history
  • Loading branch information
haukex committed Jan 28, 2023
1 parent 2bd09db commit d8d5d8b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ WriteMakefile(
provides => {
'Util::H2O' => {
file => 'lib/Util/H2O.pm',
version => '0.20',
version => '0.22',
},
},
resources => {
Expand Down
2 changes: 1 addition & 1 deletion lib/Util/H2O.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion t/Util-H2O.t
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit d8d5d8b

Please sign in to comment.