diff --git a/Changes b/Changes index eb0a9b5..4c4b53c 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ {{$NEXT}} +0.1.18 2024-10-02T13:15:18+13:00 + - Relax type-checking on Attributes /O (owner) entry. + - Use 'Placement' attribute for 'Block' vs 'Inline' elements in + XML serialization + 0.1.17 2024-08-29T06:53:12+12:00 - Fix setting of DOCTYPE in external Dtd - Refactor ancestor-or-self and descendant-or-self axes @@ -12,9 +17,9 @@ - Handle 'Artifact' tags in the structure tree 0.1.15 2023-11-10T08:07:05+13:00 - - more fixes to XML :omit option - - document some PDF 2.0 tags - - add :Lang to root element in doco and tests + - More fixes to XML :omit option + - Document some PDF 2.0 tags + - Add :Lang to root element in doco and tests 0.1.14 2023-10-28T14:27:41+13:00 - Avoid whitespace in some tag XML serialization e.g. diff --git a/META6.json b/META6.json index 0306f68..d41aee0 100644 --- a/META6.json +++ b/META6.json @@ -40,5 +40,5 @@ ], "test-depends": [ ], - "version": "0.1.17" + "version": "0.1.18" } diff --git a/lib/PDF/Tags.rakumod b/lib/PDF/Tags.rakumod index 931aa84..dccf83e 100644 --- a/lib/PDF/Tags.rakumod +++ b/lib/PDF/Tags.rakumod @@ -1,5 +1,5 @@ #| Tagged PDF root node -unit class PDF::Tags:ver<0.1.17>; +unit class PDF::Tags:ver<0.1.18>; use PDF::Tags::Node::Parent :&att-owner; also is PDF::Tags::Node::Parent;