We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 628d614 commit d5d1f86Copy full SHA for d5d1f86
Changes
@@ -1,5 +1,8 @@
1
Revision history for Perl extension JSON::PP.
2
3
+4.17_01 2023-7-29
4
+ - fix a reentrant issue (experimental) (GH#61, 87)
5
+
6
4.16 2022-12-30
7
- drop support for perls < 5.8 (GH#84, haarg++)
8
lib/JSON/PP.pm
@@ -15,7 +15,7 @@ use Carp ();
15
use Scalar::Util qw(blessed reftype refaddr);
16
#use Devel::Peek;
17
18
-our $VERSION = '4.16';
+our $VERSION = '4.17_01';
19
20
our @EXPORT = qw(encode_json decode_json from_json to_json);
21
lib/JSON/PP/Boolean.pm
@@ -11,7 +11,7 @@ overload::import('overload',
11
fallback => 1,
12
);
13
14
1;
0 commit comments