diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2022-07-19 16:24:05 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2022-07-19 16:24:05 +0900 |
commit | 03210dcfc54ba04a2d86ec60ebfb4f1ffdd4434a (patch) | |
tree | d8c304c7de547537584a089f64054ffa843cf7a6 | |
parent | c7c962a282ca30e60db54b2a9786cd3478707d9d (diff) | |
download | perl-json-03210dcfc54ba04a2d86ec60ebfb4f1ffdd4434a.tar.gz perl-json-03210dcfc54ba04a2d86ec60ebfb4f1ffdd4434a.tar.bz2 perl-json-03210dcfc54ba04a2d86ec60ebfb4f1ffdd4434a.zip |
Imported Upstream version 4.05upstream/4.05
-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 |