diff options
-rw-r--r-- | Changes | 3 | ||||
-rw-r--r-- | META.json | 4 | ||||
-rw-r--r-- | META.yml | 2 | ||||
-rw-r--r-- | lib/JSON.pm | 6 |
4 files changed, 7 insertions, 8 deletions
@@ -1,5 +1,8 @@ Revision history for Perl extension JSON. +4.05 2022-01-14 + - removed VERSION section in pod (GH#52, abraxxa++) + 4.04 2021-12-17 - updated backportPP with JSON::PP 4.07 @@ -48,6 +48,6 @@ "url" : "https://github.com/makamaka/JSON" } }, - "version" : "4.04", - "x_serialization_backend" : "JSON version 4.04" + "version" : "4.05", + "x_serialization_backend" : "JSON version 4.05" } @@ -24,5 +24,5 @@ requires: resources: bugtracker: https://github.com/makamaka/JSON/issues repository: https://github.com/makamaka/JSON -version: '4.04' +version: '4.05' x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff --git a/lib/JSON.pm b/lib/JSON.pm index a90c346..7927301 100644 --- a/lib/JSON.pm +++ b/lib/JSON.pm @@ -9,7 +9,7 @@ BEGIN { @JSON::ISA = 'Exporter' } @JSON::EXPORT = qw(from_json to_json jsonToObj objToJson encode_json decode_json); BEGIN { - $JSON::VERSION = '4.04'; + $JSON::VERSION = '4.05'; $JSON::DEBUG = 0 unless (defined $JSON::DEBUG); $JSON::DEBUG = $ENV{ PERL_JSON_DEBUG } if exists $ENV{ PERL_JSON_DEBUG }; } @@ -476,10 +476,6 @@ JSON - JSON (JavaScript Object Notation) encoder/decoder $pretty_printed = $json->pretty->encode( $perl_scalar ); # pretty-printing -=head1 VERSION - - 4.02 - =head1 DESCRIPTION This module is a thin wrapper for L<JSON::XS>-compatible modules with a few |