Skip to content

Commit 4b71606

Browse files
committed
Release 4.18
1 parent 8d67a2b commit 4b71606

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

Changes

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Revision history for Perl extension JSON::PP.
22

3-
4.17_01 2023-7-29
3+
4.18 2026-03-20
4+
- fix duplicate specification warning (GH#93, 88; Heiko Jansen++)
5+
- fix typo (GH#92, sobrado8086++; GH#96, Grinnz++)
6+
- fix decode_json prototype (reported by bdfoy++)
7+
- fix space_after (GH#89, haukex++)
8+
9+
4.17_01 2023-07-29
410
- fix a reentrant issue (experimental) (GH#61, 87)
511

612
4.16 2022-12-30

lib/JSON/PP.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use Carp ();
1515
use Scalar::Util qw(blessed reftype refaddr);
1616
#use Devel::Peek;
1717

18-
our $VERSION = '4.17_01';
18+
our $VERSION = '4.18';
1919

2020
our @EXPORT = qw(encode_json decode_json from_json to_json);
2121

lib/JSON/PP/Boolean.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ overload::import('overload',
1111
fallback => 1,
1212
);
1313

14-
our $VERSION = '4.17_01';
14+
our $VERSION = '4.18';
1515

1616
1;
1717

0 commit comments

Comments
 (0)