Skip to content

Commit

Permalink
v0.38.0
Browse files Browse the repository at this point in the history
  • Loading branch information
perlpunk committed Jan 29, 2024
1 parent b14ead5 commit f2710c6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ my %WriteMakefileArgs = (
"Test::Warn" => 0,
"lib" => 0
},
"VERSION" => "v0.37.1",
"VERSION" => "v0.38.0",
"test" => {
"TESTS" => "t/*.t"
}
Expand Down
2 changes: 1 addition & 1 deletion dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 2 additions & 4 deletions lib/YAML/PP.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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<perl_experimental> was introduced when experimental boolean
The option C<perl_experimental> 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<perl>.
Expand Down Expand Up @@ -1297,7 +1295,7 @@ Yes, this can be enabled optionally, see L<YAML::PP::Schema::Merge>
=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.
Expand Down

0 comments on commit f2710c6

Please sign in to comment.