diff options
Diffstat (limited to 'dist')
-rw-r--r-- | dist/Storable/Storable.xs | 4 | ||||
-rw-r--r-- | dist/Storable/t/malice.t | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/dist/Storable/Storable.xs b/dist/Storable/Storable.xs index 6a1ddb3fe6..531855abf1 100644 --- a/dist/Storable/Storable.xs +++ b/dist/Storable/Storable.xs @@ -847,7 +847,7 @@ static const char byteorderstr_56[] = {BYTEORDER_BYTES_56, 0}; #endif #define STORABLE_BIN_MAJOR 2 /* Binary major "version" */ -#define STORABLE_BIN_MINOR 7 /* Binary minor "version" */ +#define STORABLE_BIN_MINOR 8 /* Binary minor "version" */ #if (PATCHLEVEL <= 5) #define STORABLE_BIN_WRITE_MINOR 4 @@ -855,7 +855,7 @@ static const char byteorderstr_56[] = {BYTEORDER_BYTES_56, 0}; /* * Perl 5.6.0 onwards can do weak references. */ -#define STORABLE_BIN_WRITE_MINOR 7 +#define STORABLE_BIN_WRITE_MINOR 8 #endif /* (PATCHLEVEL <= 5) */ #if (PATCHLEVEL < 8 || (PATCHLEVEL == 8 && SUBVERSION < 1)) diff --git a/dist/Storable/t/malice.t b/dist/Storable/t/malice.t index ddb65ddf2c..6da690981e 100644 --- a/dist/Storable/t/malice.t +++ b/dist/Storable/t/malice.t @@ -33,8 +33,8 @@ $file_magic_str = 'pst0'; $other_magic = 7 + length $byteorder; $network_magic = 2; $major = 2; -$minor = 7; -$minor_write = $] > 5.005_50 ? 7 : 4; +$minor = 8; +$minor_write = $] > 5.005_50 ? $] >= 5.008 ? 8 : 7 : 4; use Test::More; |