Skip to content

Commit

Permalink
v0.033
Browse files Browse the repository at this point in the history
  • Loading branch information
perlpunk committed Jun 27, 2022
1 parent 34e7e7e commit 03489c3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Revision history for Perl module YAML::PP

0.033 2022-06-27 16:31:32+02:00

- Fix add_mapping_resolver + on_create (tie existing data)

0.032 2022-03-08 19:02:00+01:00

- Add missing '~' to allowed chars in tags
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.032",
"VERSION" => "0.033",
"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 = 2022

version = 0.032
version = 0.033

[@Filter]
-bundle = @Basic
Expand Down
4 changes: 2 additions & 2 deletions lib/YAML/PP/Schema/Include.pm
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ YAML::PP::Schema::Include - Include YAML files
my $include = YAML::PP::Schema::Include->new;
my $yp = YAML::PP->new( schema => ['JSON', $include] );
my $yp = YAML::PP->new( schema => ['+', $include] );
# we need the original YAML::PP object for getting the current filename
# and for loading another file
$include->yp($yp);
Expand All @@ -188,7 +188,7 @@ Specify paths to search for includes:
my $include = YAML::PP::Schema::Include->new(
paths => \@include_paths,
);
my $yp = YAML::PP->new( schema => ['JSON', $include] );
my $yp = YAML::PP->new( schema => ['+', $include] );
$include->yp($yp);
# /path/to/include/yaml/1/file1.yaml
Expand Down

0 comments on commit 03489c3

Please sign in to comment.