diff --git a/Changes b/Changes index b5bcf30f..6d3a94da 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ Revision history for Perl module YAML::PP -v0.37.1 2024-01-28 18:59:40+01:00 +v0.38.0 2024-01-30 00:22:42+01:00 - Add support for builtin booleans by default - Add FAQ diff --git a/Makefile.PL b/Makefile.PL index e86d1501..13dbb19f 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -53,7 +53,7 @@ my %WriteMakefileArgs = ( "Test::Warn" => 0, "lib" => 0 }, - "VERSION" => "v0.37.1", + "VERSION" => "v0.38.0", "test" => { "TESTS" => "t/*.t" } diff --git a/dist.ini b/dist.ini index c4b5787f..587a9e10 100644 --- a/dist.ini +++ b/dist.ini @@ -4,7 +4,7 @@ license = Perl_5 copyright_holder = Tina Müller copyright_year = 2024 -version = v0.37.1 +version = v0.38.0 [@Filter] -bundle = @Basic diff --git a/lib/YAML/PP.pm b/lib/YAML/PP.pm index ca04977e..0f21d687 100644 --- a/lib/YAML/PP.pm +++ b/lib/YAML/PP.pm @@ -544,8 +544,6 @@ In case of perl 5.36 and later, builtin booleans should work out of the box For earlier perl versions, you can use "pseudo" booleans like documented in the following examples. -Examples: - # load/dump booleans via boolean.pm my $ypp = YAML::PP->new( boolean => 'boolean' ); # load/dump booleans via JSON::PP::true/false @@ -573,7 +571,7 @@ This is important for dumping. This option is for backwards compatibility for perl versions < 5.36, if you rely on [!!1, !1] being dumped as [1, '']. -The option c was introduced when experimental boolean +The option C was introduced when experimental boolean support was added to perl 5.36. Since it will not be experimental anymore in perl 5.40 \o/ the option is deprecated and the same as C. @@ -1297,7 +1295,7 @@ Yes, this can be enabled optionally, see L =item Is there a linter / formatter for YAML -There is the widely L<"yamllint"|https://yamllint.readthedocs.io/>, based on +There is the widely used L<"yamllint"|https://yamllint.readthedocs.io/>, based on python's PyYAML. It is very configurable and will report errors or warnings. It cannot format.