diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2022-07-19 16:23:48 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2022-07-19 16:23:48 +0900 |
commit | 80e2994434f3c840ce12546351ab9fd20cdd3aaa (patch) | |
tree | 41233a85d8b0d8eed84e25c4c28c6bd1cea4098b /lib/JSON.pm | |
parent | 8d2a41273a56a33a291d292c1fbee03cce290694 (diff) | |
download | perl-json-80e2994434f3c840ce12546351ab9fd20cdd3aaa.tar.gz perl-json-80e2994434f3c840ce12546351ab9fd20cdd3aaa.tar.bz2 perl-json-80e2994434f3c840ce12546351ab9fd20cdd3aaa.zip |
Imported Upstream version 4.03upstream/4.03
Diffstat (limited to 'lib/JSON.pm')
-rw-r--r-- | lib/JSON.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/JSON.pm b/lib/JSON.pm index d58fc6a..3e644cc 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.02'; + $JSON::VERSION = '4.03'; $JSON::DEBUG = 0 unless (defined $JSON::DEBUG); $JSON::DEBUG = $ENV{ PERL_JSON_DEBUG } if exists $ENV{ PERL_JSON_DEBUG }; } @@ -943,7 +943,7 @@ This setting has currently no effect on tied hashes. $enabled = $json->get_allow_nonref -Unlike other boolean options, this opotion is enabled by default beginning +Unlike other boolean options, this option is enabled by default beginning with version C<4.0>. If C<$enable> is true (or missing), then the C<encode> method can convert a |