diff options
Diffstat (limited to 'lib/JSON.pm')
-rw-r--r-- | lib/JSON.pm | 6 |
1 files changed, 1 insertions, 5 deletions
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 |