This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldiag: typo
[perl5.git] / cpan / Parse-CPAN-Meta / Changes
1 Changes for Perl programming language extension Parse-CPAN-Meta
2
3 1.4401 Fri Feb 04 2011
4       - Removed Module::Load::Conditional dependency
5
6 1.4400 Fri Feb 04 2011
7       - Added 'json_backend' and 'yaml_backend' methods to provide
8         the names of modules used for deserialization
9
10 1.4200 Mon Jan 24 2011
11       - No changes from 1.41_04
12
13 1.41_04 Mon Jan 3 2011
14       - Support PERL_JSON_BACKEND environment (defaulting to JSON::PP)
15       - Support PERL_YAML_BACKEND environment (defaulting to CPAN::Meta:YAML)
16       - Update Makefile.PL to install to sitelib on Perl 5.12+
17
18 1.41_03 Fri Dec 17 2010
19         - Throw exception when CPAN::Meta::YAML has a parse error
20           (RT#47608)
21
22 1.41_02 Fri Dec 17 2010
23         - Convert to using CPAN::Meta::YAML instead of YAML::Tiny
24
25 1.41_01 Fri Dec 10 2010
26         - add support for JSON metafiles and load_* methods (RJBS)
27         - Move binary file unpacking to test file from Makefile.PL so tests
28           will pass in the Perl core using a generated Makefile.PL
29         - Move bundled uupacktool.pl to t/bin/
30
31 1.40 Sat 25 Jul 2009
32         - Add core perl 5.10.1's uupacktool.pl
33         - Repackage t/data/utf_16_le_bom.yml as ASCII for https://rt.cpan.org/Ticket/Display.html?id=47844
34
35 1.39 Thu 21 May 2009
36         - Even though utf8 starts at 5.7+ there's no is_utf till
37           5.8.1 so skip in the tests if needed (ADAMK)
38
39 1.38 Sat 16 May 2009
40         - Synchorised version numbers with YAML::Tiny
41         - Code shrinkages to the bloaty Unicode/BOM code
42         - Merging a ton more tests from YAML::Tiny
43         - Added back some pointless options to yaml_ok that keep our
44           codebase closer to YAML::Tiny (which should help with syncing)
45         - Changed exceptions to be closer to YAML::Tiny
46
47 0.05 Wed 11 Mar 2009
48         - Upgrade previous release to a stable release.
49
50 0.04_01 Tue  3 Mar 2009
51         - Merge Unicode / BOM fixes from YAML::Tiny
52
53 0.04 Wed  7 Jan 2009
54         - Matching changes in YAML::Tiny 1.36
55         - Fixing missing feature reported by H.Merijn Brand
56         - Changes to make Padre-CPAN-Meta core-compatible (SMUELLER)++
57
58 0.03 Thu 20 Mar 2008
59         - Adding YAML.pm compatibility in scalar context
60
61 0.02 Thu 10 Jan 2008
62         - Purging some references to YAML::Tiny that I missed
63
64 0.01 Tue  8 Jan 2008
65         - Cloned from YAML::Tiny 1.21
66         - Removed all write functionality
67         - Reduced interface to Load and LoadFile
68         - Removed object-orientation
69         - Removed global $errstr, all errors are exceptions
70         - Applied prototypes to all functions