Skip to content

Commit

Permalink
bump version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
DrHyde committed Mar 10, 2022
1 parent d8bfac2 commit 294a373
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG
@@ -1,3 +1,7 @@
0.3.2 2022-03-10

- bugfix: cope with some BOOL changes in blead-perl

0.3.1 2022-01-07

- add the bool_supported method that can be used to detect
Expand Down
3 changes: 2 additions & 1 deletion lib/Scalar/Type.pm
Expand Up @@ -5,6 +5,7 @@ use warnings;

our $IS_BOOL_FN;

# these shenanigans can be pared back a bit once 5.36 is out
BEGIN {
$IS_BOOL_FN = $] >= 5.035010 ? 'builtin::is_bool' :
$] >= 5.035007 ? 'builtin::isbool' :
Expand All @@ -20,7 +21,7 @@ use if bool_supported() eq 'builtin::is_bool', qw(experimental builtin);
use Carp qw(croak);
use Config;

our $VERSION = '0.3.1';
our $VERSION = '0.3.2';

require XSLoader;
XSLoader::load(__PACKAGE__, $VERSION);
Expand Down

0 comments on commit 294a373

Please sign in to comment.