Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit 0204c68

Browse files
committed
JSON-PP-4.04_01
json_pp got one more documented option: indent_length
1 parent 071f7ab commit 0204c68

File tree

6 files changed

+16
-12
lines changed

6 files changed

+16
-12
lines changed

Porting/Maintainers.pl

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -914,10 +914,11 @@ package Maintainers;
914914
},
915915

916916
'JSON::PP' => {
917-
'DISTRIBUTION' => 'MAKAMAKA/JSON-PP-4.03.tar.gz',
917+
'DISTRIBUTION' => 'MAKAMAKA/JSON-PP-4.04.tar.gz',
918918
'FILES' => q[cpan/JSON-PP],
919-
# doc only
920-
#'CUSTOMIZED' => [ qw( lib/JSON/PP.pm )],
919+
# docs, and one test
920+
#'CUSTOMIZED' => [ qw( lib/JSON/PP.pm
921+
# t/099_binary.t )],
921922
},
922923

923924
'lib' => {

cpan/JSON-PP/bin/json_pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ options to JSON::PP
174174
Acceptable options are:
175175
176176
ascii latin1 utf8 pretty indent space_before space_after relaxed canonical allow_nonref
177-
allow_singlequote allow_barekey allow_bignum loose escape_slash
177+
allow_singlequote allow_barekey allow_bignum loose escape_slash indent_length
178178
179179
Multiple options must be separated by commas:
180180

cpan/JSON-PP/lib/JSON/PP.pm

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use JSON::PP::Boolean;
1414
use Carp ();
1515
#use Devel::Peek;
1616

17-
$JSON::PP::VERSION = '4.03_01';
17+
$JSON::PP::VERSION = '4.04_01';
1818

1919
@JSON::PP::EXPORT = qw(encode_json decode_json from_json to_json);
2020

@@ -1773,7 +1773,7 @@ JSON::PP - JSON::XS compatible pure-Perl module.
17731773
17741774
=head1 VERSION
17751775
1776-
4.03_01
1776+
4.04_01
17771777
17781778
=head1 DESCRIPTION
17791779
@@ -2366,7 +2366,8 @@ that the object is only a single hash/object or array.
23662366
If no argument is given, the highest possible setting will be used, which
23672367
is rarely useful.
23682368
2369-
See L<Cpanel::JSON::XS/SECURITY CONSIDERATIONS> for more info on why this is useful.
2369+
See L<Cpanel::JSON::XS/SECURITY CONSIDERATIONS> for more info on why
2370+
this is useful.
23702371
23712372
=head2 max_size
23722373
@@ -2383,7 +2384,8 @@ effect on C<encode> (yet).
23832384
If no argument is given, the limit check will be deactivated (same as when
23842385
C<0> is specified).
23852386
2386-
See L<Cpanel::JSON::XS/SECURITY CONSIDERATIONS> for more info on why this is useful.
2387+
See L<Cpanel::JSON::XS/SECURITY CONSIDERATIONS> for more info on why
2388+
this is useful.
23872389
23882390
=head2 encode
23892391

cpan/JSON-PP/lib/JSON/PP/Boolean.pm

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

13-
$JSON::PP::Boolean::VERSION = '4.03';
13+
$JSON::PP::Boolean::VERSION = '4.04';
1414

1515
1;
1616

dist/Module-CoreList/lib/Module/CoreList.pm

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18973,7 +18973,8 @@ our %delta :const = (
1897318973
'IO::Uncompress::Inflate'=> '2.086',
1897418974
'IO::Uncompress::RawInflate'=> '2.086',
1897518975
'IO::Uncompress::Unzip' => '2.086',
18976-
'JSON::PP' => '4.03_01',
18976+
'JSON::PP' => '4.04_01',
18977+
'JSON::PP::Boolean' => '4.04',
1897718978
'Math::BigFloat' => '1.999816',
1897818979
'Math::BigInt' => '1.999816',
1897918980
'Math::BigInt::Calc' => '1.999816',

pod/perlcdelta.pod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -873,9 +873,9 @@ L<[cpan #105700]|https://rt.cpan.org/Ticket/Display.html?id=1105700>
873873

874874
probe for more external gzips, make t/external.t strict safe.
875875

876-
=item L<JSON::PP> 4.03_01
876+
=item L<JSON::PP> 4.04_01
877877

878-
Upstream + Keep some of our cperl-specific docs
878+
Upstream + keep some of our cperl-specific docs and test improvements.
879879

880880
=item L<lib> 0.65
881881

0 commit comments

Comments
 (0)