Skip to content

Commit

Permalink
v0.031
Browse files Browse the repository at this point in the history
  • Loading branch information
perlpunk committed Dec 25, 2021
1 parent dc43247 commit c41f599
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
11 changes: 11 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
Revision history for Perl module YAML::PP

0.031 2021-12-25 23:43:19+01:00

- Fix several rare test cases:
- Support literal escaped tabs
- Allow only one digit for block scalar indent indicator
- Allow comments at the end of directives
- Match word boundary after '%YAML'
- Allow tabs and multiple spaces between directive elements
- Forbid lines starting with tabs in block mode
- After tabs no further indentation elements allowed

0.030 2021-11-07 21:57:28+01:00

- preserve: Keep existing data (issue #44)
Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ my %WriteMakefileArgs = (
"Test::Warn" => 0,
"lib" => 0
},
"VERSION" => "0.030",
"VERSION" => "0.031",
"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 = 2021

version = 0.030
version = 0.031

[@Filter]
-bundle = @Basic
Expand Down
7 changes: 2 additions & 5 deletions lib/YAML/PP.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1293,7 +1293,7 @@ overview of which frameworks support which YAML features:
L<https://github.com/yaml/yaml-test-suite>
It contains about 230 test cases and expected parsing events and more.
It contains almost 400 test cases and expected parsing events and more.
There will be more tests coming. This test suite allows you to write parsers
without turning the examples from the Specification into tests yourself.
Also the examples aren't completely covering all cases - the test suite
Expand Down Expand Up @@ -1333,10 +1333,7 @@ and created a matrix view.
L<https://github.com/perlpunk/yaml-test-matrix>
You can find the latest build at L<https://matrix.yaml.io>
As of this writing, the test matrix only contains valid test cases.
Invalid ones will be added.
You can find the latest build at L<https://matrix.yaml.info>
=head1 CONTRIBUTORS
Expand Down

0 comments on commit c41f599

Please sign in to comment.