summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDongHun Kwak <dh0128.kwak@samsung.com>2022-07-25 08:44:28 +0900
committerDongHun Kwak <dh0128.kwak@samsung.com>2022-07-25 08:44:28 +0900
commitbed2f52e9348362135cc7cc4e6cedfe306744b20 (patch)
tree16a66408bb5ba7a28e851818936334ec721aa6c6
parent433f4692bdc9dd2ab3cde17e9df2837f384bae18 (diff)
downloadperl-XML-LibXML-bed2f52e9348362135cc7cc4e6cedfe306744b20.tar.gz
perl-XML-LibXML-bed2f52e9348362135cc7cc4e6cedfe306744b20.tar.bz2
perl-XML-LibXML-bed2f52e9348362135cc7cc4e6cedfe306744b20.zip
Imported Upstream version 2.0201upstream/2.0201
-rw-r--r--Changes8
-rw-r--r--LibXML.pm2
-rw-r--r--LibXML.pod4
-rw-r--r--META.json7
-rw-r--r--META.yml5
-rw-r--r--Makefile.PL17
-rw-r--r--README28
-rw-r--r--docs/libxml.dbk39
-rw-r--r--lib/XML/LibXML/Attr.pod2
-rw-r--r--lib/XML/LibXML/AttributeHash.pm2
-rw-r--r--lib/XML/LibXML/Boolean.pm2
-rw-r--r--lib/XML/LibXML/CDATASection.pod2
-rw-r--r--lib/XML/LibXML/Comment.pod2
-rw-r--r--lib/XML/LibXML/Common.pm2
-rw-r--r--lib/XML/LibXML/Common.pod2
-rw-r--r--lib/XML/LibXML/DOM.pod2
-rw-r--r--lib/XML/LibXML/Devel.pm2
-rw-r--r--lib/XML/LibXML/Document.pod2
-rw-r--r--lib/XML/LibXML/DocumentFragment.pod2
-rw-r--r--lib/XML/LibXML/Dtd.pod2
-rw-r--r--lib/XML/LibXML/Element.pod2
-rw-r--r--lib/XML/LibXML/ErrNo.pm2
-rw-r--r--lib/XML/LibXML/ErrNo.pod2
-rw-r--r--lib/XML/LibXML/Error.pm2
-rw-r--r--lib/XML/LibXML/Error.pod2
-rw-r--r--lib/XML/LibXML/InputCallback.pod2
-rw-r--r--lib/XML/LibXML/Literal.pm2
-rw-r--r--lib/XML/LibXML/Namespace.pod2
-rw-r--r--lib/XML/LibXML/Node.pod2
-rw-r--r--lib/XML/LibXML/NodeList.pm2
-rw-r--r--lib/XML/LibXML/Number.pm2
-rw-r--r--lib/XML/LibXML/PI.pod2
-rw-r--r--lib/XML/LibXML/Parser.pod2
-rw-r--r--lib/XML/LibXML/Pattern.pod2
-rw-r--r--lib/XML/LibXML/Reader.pm2
-rw-r--r--lib/XML/LibXML/Reader.pod2
-rw-r--r--lib/XML/LibXML/RegExp.pod2
-rw-r--r--lib/XML/LibXML/RelaxNG.pod2
-rw-r--r--lib/XML/LibXML/SAX.pm2
-rw-r--r--lib/XML/LibXML/SAX.pod2
-rw-r--r--lib/XML/LibXML/SAX/Builder.pm2
-rw-r--r--lib/XML/LibXML/SAX/Builder.pod2
-rw-r--r--lib/XML/LibXML/SAX/Generator.pm2
-rw-r--r--lib/XML/LibXML/SAX/Parser.pm2
-rw-r--r--lib/XML/LibXML/Schema.pod2
-rw-r--r--lib/XML/LibXML/Text.pod2
-rw-r--r--lib/XML/LibXML/XPathContext.pm2
-rw-r--r--lib/XML/LibXML/XPathContext.pod2
-rw-r--r--lib/XML/LibXML/XPathExpression.pod2
49 files changed, 108 insertions, 84 deletions
diff --git a/Changes b/Changes
index a221d8c..aa08048 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,13 @@
Revision history for Perl extension XML::LibXML
+2.0201 2019-05-25
+ - Set MIN_PERL_VERSION to 5.8.1.
+ - Alien::Libxml2 Makefile.PL cleanups.
+ - Update the README for grammar and info.
+ - Link to XML-LibXML "by Example"
+ - https://github.com/shlomif/perl-XML-LibXML/pull/36
+ - Thanks to @Grinnz .
+
2.0200 2019-03-23
- Convert to use Alien::Libxml2 .
- https://github.com/shlomif/perl-XML-LibXML/pull/30
diff --git a/LibXML.pm b/LibXML.pm
index e430db3..37ac162 100644
--- a/LibXML.pm
+++ b/LibXML.pm
@@ -29,7 +29,7 @@ use XML::LibXML::XPathContext;
use IO::Handle; # for FH reads called as methods
BEGIN {
-$VERSION = "2.0200"; # VERSION TEMPLATE: DO NOT CHANGE
+$VERSION = "2.0201"; # VERSION TEMPLATE: DO NOT CHANGE
$ABI_VERSION = 2;
require Exporter;
require DynaLoader;
diff --git a/LibXML.pod b/LibXML.pod
index 3b5cf50..686df1a 100644
--- a/LibXML.pod
+++ b/LibXML.pod
@@ -25,6 +25,8 @@ a XML::XPath-like interface to XPath API of libxml2. The module is split into
several packages which are not described in this section; unless stated
otherwise, you only need to C<<<<<< use XML::LibXML; >>>>>> in your programs.
+Check out XML::LibXML by Example (L<<<<<< http://grantm.github.io/perl-libxml-by-example/ >>>>>>) for a tutorial.
+
For further information, please check the following documentation:
=over 4
@@ -505,7 +507,7 @@ Petr Pajas
=head1 VERSION
-2.0200
+2.0201
=head1 COPYRIGHT
diff --git a/META.json b/META.json
index f9689f6..baee45c 100644
--- a/META.json
+++ b/META.json
@@ -40,8 +40,6 @@
"prereqs" : {
"build" : {
"requires" : {
- "Alien::Libxml2" : "0",
- "Config" : "0",
"ExtUtils::MakeMaker" : "0"
}
},
@@ -54,7 +52,6 @@
},
"runtime" : {
"requires" : {
- "Alien::Libxml2" : "0",
"Carp" : "0",
"DynaLoader" : "0",
"Encode" : "0",
@@ -71,6 +68,7 @@
"constant" : "0",
"overload" : "0",
"parent" : "0",
+ "perl" : "5.008001",
"strict" : "0",
"vars" : "0",
"warnings" : "0"
@@ -78,6 +76,7 @@
},
"test" : {
"requires" : {
+ "Config" : "0",
"Errno" : "0",
"IO::File" : "0",
"IO::Handle" : "0",
@@ -97,6 +96,6 @@
"web" : "https://github.com/shlomif/perl-XML-LibXML"
}
},
- "version" : "2.0200",
+ "version" : "2.0201",
"x_serialization_backend" : "JSON::PP version 2.97001"
}
diff --git a/META.yml b/META.yml
index dbc47ad..252dbab 100644
--- a/META.yml
+++ b/META.yml
@@ -3,7 +3,6 @@ abstract: 'Interface to Gnome libxml2 xml parsing and DOM library'
author:
- 'Petr Pajas <PAJAS@cpan.org>'
build_requires:
- Alien::Libxml2: '0'
Config: '0'
Errno: '0'
ExtUtils::MakeMaker: '0'
@@ -47,7 +46,6 @@ no_index:
- inc
- xt
requires:
- Alien::Libxml2: '0'
Carp: '0'
DynaLoader: '0'
Encode: '0'
@@ -64,10 +62,11 @@ requires:
constant: '0'
overload: '0'
parent: '0'
+ perl: '5.008001'
strict: '0'
vars: '0'
warnings: '0'
resources:
repository: https://github.com/shlomif/perl-XML-LibXML.git
-version: '2.0200'
+version: '2.0201'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff --git a/Makefile.PL b/Makefile.PL
index 3055a0c..aba6b8e 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -15,17 +15,12 @@
use strict;
use warnings;
-require 5.008;
+require 5.008001;
use Alien::Libxml2;
use ExtUtils::MakeMaker;
use Config;
-my %BuildReqs = (
- "Alien::Libxml2" => 0,
- "Config" => 0,
- "ExtUtils::MakeMaker" => 0,
-);
my %ConfigReqs = (
"Alien::Libxml2" => 0,
"Config" => 0,
@@ -38,6 +33,7 @@ my %DevReqs = (
'Test::TrailingSpace' => 0,
);
my %TestReqs = (
+ "Config" => 0,
"Errno" => 0,
"IO::File" => 0,
"IO::Handle" => 0,
@@ -48,7 +44,6 @@ my %TestReqs = (
"utf8" => 0,
);
my %prereqs = (
- "Alien::Libxml2" => 0,
"Carp" => 0,
"DynaLoader" => 0,
"Encode" => 0, # actually used in one module. requires Perl 5.8+
@@ -83,6 +78,7 @@ my %WriteMakefileArgs = (
"LICENSE" => "perl_5",
"ABSTRACT" => "Interface to Gnome libxml2 xml parsing and DOM library",
"AUTHOR" => "Petr Pajas <PAJAS\@cpan.org>",
+ "MIN_PERL_VERSION" => '5.008001',
"VERSION_FROM" => "LibXML.pm",
'META_MERGE' => {
'dynamic_config' => 0,
@@ -113,7 +109,6 @@ my %WriteMakefileArgs = (
"xs",
],
},
- "BUILD_REQUIRES" => \%BuildReqs,
"CONFIGURE_REQUIRES" => \%ConfigReqs,
"TEST_REQUIRES" => \%TestReqs,
"PREREQ_PM" => \%prereqs,
@@ -127,15 +122,17 @@ my %WriteMakefileArgs = (
%xsbuild,
);
unless ( eval { ExtUtils::MakeMaker->VERSION('6.63_03') } ) {
- my %fallback = (%prereqs, %TestReqs, %BuildReqs);
+ my %fallback = (%prereqs, %TestReqs);
delete $WriteMakefileArgs{TEST_REQUIRES};
- delete $WriteMakefileArgs{BUILD_REQUIRES};
$WriteMakefileArgs{PREREQ_PM} = \%fallback;
}
delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
unless eval { ExtUtils::MakeMaker->VERSION('6.52') };
+delete $WriteMakefileArgs{MIN_PERL_VERSION}
+ unless eval { ExtUtils::MakeMaker->VERSION('6.48') };
+
delete $WriteMakefileArgs{META_MERGE}
unless eval { ExtUtils::MakeMaker->VERSION('6.46') };
diff --git a/README b/README
index ce77ecb..827b6ff 100644
--- a/README
+++ b/README
@@ -3,8 +3,8 @@ INTRODUCTION
This module implements a Perl interface to the Gnome libxml2 library which
provides interfaces for parsing and manipulating XML files. This module allows
-Perl programmers to make use of the highly capable validating XML parser and
-the high performance DOM implementation.
+Perl programmers to make use of its highly capable validating XML parser and
+its high performance DOM implementation.
IMPORTANT NOTES
@@ -104,7 +104,8 @@ Which version of libxml2 should be used?
XML::LibXML is tested against a couple versions of libxml2 before it is
released. Thus there are versions of libxml2 that are known not to work
properly with XML::LibXML. The Makefile.PL keeps a blacklist of the
-incompatible libxml2 versions.
+incompatible libxml2 versions using Alien::Libxml2. The blacklist itself is
+kept inside its "alienfile" file.
If Makefile.PL detects one of the incompatible versions, it notifies the user.
It may still happen that XML::LibXML builds and pass its tests with such a
@@ -122,6 +123,9 @@ certain conditions. This is no reason to assume that it shall work without
problems. If Makefile.PL marks a version of libxml2 as incompatible or broken
it is done for a good reason.
+Full linking information for libxml2 can be obtained by invoking "xml2-config
+--libs".
+
Notes for Microsoft Windows
===========================
@@ -175,10 +179,10 @@ incompatible) versions of those DLLs.
Notes for Mac OS X
==================
-Due refactoring the module, XML::LibXML will not run with some earlier versions
-of Mac OS X. It appears that this is related to special linker options for that
-OS prior to version 10.2.2. Since the developers do not have full access to
-this OS, help/ patches from OS X gurus are highly appreciated.
+Due to a refactoring of the module, XML::LibXML will not run with some earlier
+versions of Mac OS X. It appears that this is related to special linker options
+for that OS prior to version 10.2.2. Since the developers do not have full
+access to this OS, help/ patches from OS X gurus are highly appreciated.
It is confirmed that XML::LibXML builds and runs without problems since Mac OS
X 10.2.6.
@@ -228,12 +232,12 @@ Additionally I received the following Note from Rozi Kovesdi:
CONTACT
=======
-For bug reports, please use the CPAN request tracker on
-http://rt.cpan.org/NoAuth/Bugs.html?Dist=XML-LibXML
+For bug reports, please use the issue tracker at
+https://github.com/shlomif/perl-XML-LibXML/issues .
-For suggestions etc. you may contact the maintainer directly at "pajas at ufal
-dot mff dot cuni dot cz", but in general, it is recommended to use the mailing
-list given below.
+For suggestions etc. you may contact the maintainer directly at
+https://www.shlomifish.org/me/contact-me/ , but in general, it is recommended
+to use the mailing list given below.
For suggestions etc., and other issues related to XML::LibXML you may use the
perl XML mailing list (perl-xml@listserv.ActiveState.com), where most
diff --git a/docs/libxml.dbk b/docs/libxml.dbk
index 3a4d371..8138bce 100644
--- a/docs/libxml.dbk
+++ b/docs/libxml.dbk
@@ -22,7 +22,7 @@
</authorgroup>
- <edition>2.0200</edition>
+ <edition>2.0201</edition>
<copyright>
<year>2001-2007</year>
<holder>AxKit.com Ltd</holder>
@@ -45,8 +45,8 @@
<para>This module implements a Perl interface to the Gnome
libxml2 library which provides
interfaces for parsing and manipulating XML files. This
- module allows Perl programmers to make use of the highly
- capable validating XML parser and the high performance DOM
+ module allows Perl programmers to make use of its highly
+ capable validating XML parser and its high performance DOM
implementation.</para>
<sect1>
@@ -155,7 +155,9 @@ See Notes for Microsoft Windows below.)</para>
libxml2 before it is released. Thus there are versions
of libxml2 that are known not to work properly with
XML::LibXML. The Makefile.PL keeps a blacklist of
- the incompatible libxml2 versions.</para>
+ the incompatible libxml2 versions using Alien::Libxml2.
+ The blacklist itself is kept inside its "alienfile"
+ file.</para>
<para>If Makefile.PL detects one of the incompatible versions,
it notifies the user. It may still happen that
@@ -175,6 +177,9 @@ See Notes for Microsoft Windows below.)</para>
reason to assume that it shall work without problems.
If Makefile.PL marks a version of libxml2 as incompatible or broken
it is done for a good reason.</para>
+
+ <para>Full linking information for libxml2 can be obtained
+ by invoking "xml2-config --libs".</para>
</sect2>
<sect2>
@@ -223,12 +228,14 @@ See Notes for Microsoft Windows below.)</para>
<sect2>
<title>Notes for Mac OS X</title>
- <para>Due refactoring the module, XML::LibXML will not
- run with some earlier versions of Mac OS X. It appears that this is related
- to special linker options for that OS prior to version
- 10.2.2. Since the developers do not have full access to this OS,
- help/ patches from OS X gurus are highly
- appreciated.</para>
+ <para>
+ Due to a refactoring of the module, XML::LibXML will
+ not run with some earlier versions of Mac OS X. It
+ appears that this is related to special linker options
+ for that OS prior to version 10.2.2. Since the
+ developers do not have full access to this OS, help/
+ patches from OS X gurus are highly appreciated.
+ </para>
<para>It is confirmed that XML::LibXML builds and runs
without problems since Mac OS X 10.2.6.</para>
@@ -281,9 +288,14 @@ perl Makefile.PL LIBS='-L/path/to/lib' INC='-I/path/to/include'</programlisting>
<sect1>
<title>Contact</title>
- <para>For bug reports, please use the CPAN request tracker on http://rt.cpan.org/NoAuth/Bugs.html?Dist=XML-LibXML</para>
+ <para>For bug reports, please use the issue tracker at
+ https://github.com/shlomif/perl-XML-LibXML/issues .</para>
- <para>For suggestions etc. you may contact the maintainer directly at "pajas at ufal dot mff dot cuni dot cz", but in general, it is recommended to use the mailing list given below.
+ <para>
+ For suggestions etc. you may contact the maintainer directly at
+ https://www.shlomifish.org/me/contact-me/
+ , but in general, it is recommended to use the mailing
+ list given below.
</para>
<para>For suggestions etc., and other issues
@@ -381,6 +393,9 @@ EOT</programlisting>
unless stated otherwise, you only need to <literal>use XML::LibXML;</literal>
in your programs.</para>
+ <para>Check out <ulink url="http://grantm.github.io/perl-libxml-by-example/">XML::LibXML by Example</ulink>
+ for a tutorial.</para>
+
<para>For further information, please check the following documentation:</para>
<variablelist>
diff --git a/lib/XML/LibXML/Attr.pod b/lib/XML/LibXML/Attr.pod
index 72c6863..6735393 100644
--- a/lib/XML/LibXML/Attr.pod
+++ b/lib/XML/LibXML/Attr.pod
@@ -121,7 +121,7 @@ Petr Pajas
=head1 VERSION
-2.0200
+2.0201
=head1 COPYRIGHT
diff --git a/lib/XML/LibXML/AttributeHash.pm b/lib/XML/LibXML/AttributeHash.pm
index bcf7370..e2f23ac 100644
--- a/lib/XML/LibXML/AttributeHash.pm
+++ b/lib/XML/LibXML/AttributeHash.pm
@@ -7,7 +7,7 @@ use Tie::Hash;
our @ISA = qw/Tie::Hash/;
use vars qw($VERSION);
-$VERSION = "2.0200"; # VERSION TEMPLATE: DO NOT CHANGE
+$VERSION = "2.0201"; # VERSION TEMPLATE: DO NOT CHANGE
BEGIN
{
diff --git a/lib/XML/LibXML/Boolean.pm b/lib/XML/LibXML/Boolean.pm
index a2755e8..7a43d55 100644
--- a/lib/XML/LibXML/Boolean.pm
+++ b/lib/XML/LibXML/Boolean.pm
@@ -16,7 +16,7 @@ use warnings;
use vars qw ($VERSION);
-$VERSION = "2.0200"; # VERSION TEMPLATE: DO NOT CHANGE
+$VERSION = "2.0201"; # VERSION TEMPLATE: DO NOT CHANGE
use overload
'""' => \&value,
diff --git a/lib/XML/LibXML/CDATASection.pod b/lib/XML/LibXML/CDATASection.pod
index 899f18d..3d898c7 100644
--- a/lib/XML/LibXML/CDATASection.pod
+++ b/lib/XML/LibXML/CDATASection.pod
@@ -45,7 +45,7 @@ Petr Pajas
=head1 VERSION
-2.0200
+2.0201
=head1 COPYRIGHT
diff --git a/lib/XML/LibXML/Comment.pod b/lib/XML/LibXML/Comment.pod
index e4af0b4..610b6b6 100644
--- a/lib/XML/LibXML/Comment.pod
+++ b/lib/XML/LibXML/Comment.pod
@@ -46,7 +46,7 @@ Petr Pajas
=head1 VERSION
-2.0200
+2.0201
=head1 COPYRIGHT
diff --git a/lib/XML/LibXML/Common.pm b/lib/XML/LibXML/Common.pm
index ec984ec..423e6f4 100644
--- a/lib/XML/LibXML/Common.pm
+++ b/lib/XML/LibXML/Common.pm
@@ -24,7 +24,7 @@ use vars qw( @ISA $VERSION @EXPORT @EXPORT_OK %EXPORT_TAGS);
@ISA = qw(Exporter);
-$VERSION = "2.0200"; # VERSION TEMPLATE: DO NOT CHANGE
+$VERSION = "2.0201"; # VERSION TEMPLATE: DO NOT CHANGE
use XML::LibXML qw(:libxml);
diff --git a/lib/XML/LibXML/Common.pod b/lib/XML/LibXML/Common.pod
index 04053da..6b64b42 100644
--- a/lib/XML/LibXML/Common.pod
+++ b/lib/XML/LibXML/Common.pod
@@ -116,7 +116,7 @@ Petr Pajas
=head1 VERSION
-2.0200
+2.0201
=head1 COPYRIGHT
diff --git a/lib/XML/LibXML/DOM.pod b/lib/XML/LibXML/DOM.pod
index 12a5817..4e0db21 100644
--- a/lib/XML/LibXML/DOM.pod
+++ b/lib/XML/LibXML/DOM.pod
@@ -129,7 +129,7 @@ Petr Pajas
=head1 VERSION
-2.0200
+2.0201
=head1 COPYRIGHT
diff --git a/lib/XML/LibXML/Devel.pm b/lib/XML/LibXML/Devel.pm
index c53a1fd..36007d9 100644
--- a/lib/XML/LibXML/Devel.pm
+++ b/lib/XML/LibXML/Devel.pm
@@ -12,7 +12,7 @@ use warnings;
use XML::LibXML;
use vars qw ($VERSION);
-$VERSION = "2.0200"; # VERSION TEMPLATE: DO NOT CHANGE
+$VERSION = "2.0201"; # VERSION TEMPLATE: DO NOT CHANGE
use 5.008_000;
diff --git a/lib/XML/LibXML/Document.pod b/lib/XML/LibXML/Document.pod
index 3661a9b..1c0e255 100644
--- a/lib/XML/LibXML/Document.pod
+++ b/lib/XML/LibXML/Document.pod
@@ -683,7 +683,7 @@ Petr Pajas
=head1 VERSION
-2.0200
+2.0201
=head1 COPYRIGHT
diff --git a/lib/XML/LibXML/DocumentFragment.pod b/lib/XML/LibXML/DocumentFragment.pod
index 107b80b..a0edfd7 100644
--- a/lib/XML/LibXML/DocumentFragment.pod
+++ b/lib/XML/LibXML/DocumentFragment.pod
@@ -27,7 +27,7 @@ Petr Pajas
=head1 VERSION
-2.0200
+2.0201
=head1 COPYRIGHT
diff --git a/lib/XML/LibXML/Dtd.pod b/lib/XML/LibXML/Dtd.pod
index ecfb4fa..9851970 100644
--- a/lib/XML/LibXML/Dtd.pod
+++ b/lib/XML/LibXML/Dtd.pod
@@ -89,7 +89,7 @@ Petr Pajas
=head1 VERSION
-2.0200
+2.0201
=head1 COPYRIGHT
diff --git a/lib/XML/LibXML/Element.pod b/lib/XML/LibXML/Element.pod
index 7104f04..023be0f 100644
--- a/lib/XML/LibXML/Element.pod
+++ b/lib/XML/LibXML/Element.pod
@@ -382,7 +382,7 @@ Petr Pajas
=head1 VERSION
-2.0200
+2.0201
=head1 COPYRIGHT
diff --git a/lib/XML/LibXML/ErrNo.pm b/lib/XML/LibXML/ErrNo.pm
index 6f33f76..6fc32f5 100644
--- a/lib/XML/LibXML/ErrNo.pm
+++ b/lib/XML/LibXML/ErrNo.pm
@@ -14,7 +14,7 @@ use strict;
use warnings;
use vars qw($VERSION);
-$VERSION = "2.0200"; # VERSION TEMPLATE: DO NOT CHANGE
+$VERSION = "2.0201"; # VERSION TEMPLATE: DO NOT CHANGE
use constant ERR_OK => 0;
use constant ERR_INTERNAL_ERROR => 1;
diff --git a/lib/XML/LibXML/ErrNo.pod b/lib/XML/LibXML/ErrNo.pod
index 05cf717..1919fa5 100644
--- a/lib/XML/LibXML/ErrNo.pod
+++ b/lib/XML/LibXML/ErrNo.pod
@@ -17,7 +17,7 @@ Petr Pajas
=head1 VERSION
-2.0200
+2.0201
=head1 COPYRIGHT
diff --git a/lib/XML/LibXML/Error.pm b/lib/XML/LibXML/Error.pm
index 69b9e1f..dfe235a 100644
--- a/lib/XML/LibXML/Error.pm
+++ b/lib/XML/LibXML/Error.pm
@@ -29,7 +29,7 @@ use overload
fallback => 1;
$WARNINGS = 0; # 0: suppress, 1: report via warn, 2: report via die
-$VERSION = "2.0200"; # VERSION TEMPLATE: DO NOT CHANGE
+$VERSION = "2.0201"; # VERSION TEMPLATE: DO NOT CHANGE
use constant XML_ERR_NONE => 0;
use constant XML_ERR_WARNING => 1; # A simple warning
diff --git a/lib/XML/LibXML/Error.pod b/lib/XML/LibXML/Error.pod
index db6e1ee..aaf7063 100644
--- a/lib/XML/LibXML/Error.pod
+++ b/lib/XML/LibXML/Error.pod
@@ -244,7 +244,7 @@ Petr Pajas
=head1 VERSION
-2.0200
+2.0201
=head1 COPYRIGHT
diff --git a/lib/XML/LibXML/InputCallback.pod b/lib/XML/LibXML/InputCallback.pod
index 751faae..66e0c4a 100644
--- a/lib/XML/LibXML/InputCallback.pod
+++ b/lib/XML/LibXML/InputCallback.pod
@@ -280,7 +280,7 @@ Petr Pajas
=head1 VERSION
-2.0200
+2.0201
=head1 COPYRIGHT
diff --git a/lib/XML/LibXML/Literal.pm b/lib/XML/LibXML/Literal.pm
index 8097b7f..44e2194 100644
--- a/lib/XML/LibXML/Literal.pm
+++ b/lib/XML/LibXML/Literal.pm
@@ -16,7 +16,7 @@ use strict;
use warnings;
use vars qw ($VERSION);
-$VERSION = "2.0200"; # VERSION TEMPLATE: DO NOT CHANGE
+$VERSION = "2.0201"; # VERSION TEMPLATE: DO NOT CHANGE
use overload
'""' => \&value,
diff --git a/lib/XML/LibXML/Namespace.pod b/lib/XML/LibXML/Namespace.pod
index 68cc2a1..adc88a8 100644
--- a/lib/XML/LibXML/Namespace.pod
+++ b/lib/XML/LibXML/Namespace.pod
@@ -141,7 +141,7 @@ Petr Pajas
=head1 VERSION
-2.0200
+2.0201
=head1 COPYRIGHT
diff --git a/lib/XML/LibXML/Node.pod b/lib/XML/LibXML/Node.pod
index 7d68a6d..cfb0bfa 100644
--- a/lib/XML/LibXML/Node.pod
+++ b/lib/XML/LibXML/Node.pod
@@ -763,7 +763,7 @@ Petr Pajas
=head1 VERSION
-2.0200
+2.0201
=head1 COPYRIGHT
diff --git a/lib/XML/LibXML/NodeList.pm b/lib/XML/LibXML/NodeList.pm
index dc9b9ec..3c896d2 100644
--- a/lib/XML/LibXML/NodeList.pm
+++ b/lib/XML/LibXML/NodeList.pm
@@ -17,7 +17,7 @@ use XML::LibXML::Literal;
use XML::LibXML::Number;
use vars qw($VERSION);
-$VERSION = "2.0200"; # VERSION TEMPLATE: DO NOT CHANGE
+$VERSION = "2.0201"; # VERSION TEMPLATE: DO NOT CHANGE
use overload
'""' => \&to_literal,
diff --git a/lib/XML/LibXML/Number.pm b/lib/XML/LibXML/Number.pm
index 478b977..49f740e 100644
--- a/lib/XML/LibXML/Number.pm
+++ b/lib/XML/LibXML/Number.pm
@@ -14,7 +14,7 @@ use strict;
use warnings;
use vars qw ($VERSION);
-$VERSION = "2.0200"; # VERSION TEMPLATE: DO NOT CHANGE
+$VERSION = "2.0201"; # VERSION TEMPLATE: DO NOT CHANGE
use overload
'""' => \&value,
diff --git a/lib/XML/LibXML/PI.pod b/lib/XML/LibXML/PI.pod
index 40c5620..50ea4f4 100644
--- a/lib/XML/LibXML/PI.pod
+++ b/lib/XML/LibXML/PI.pod
@@ -74,7 +74,7 @@ Petr Pajas
=head1 VERSION
-2.0200
+2.0201
=head1 COPYRIGHT
diff --git a/lib/XML/LibXML/Parser.pod b/lib/XML/LibXML/Parser.pod
index 94181d1..d20382f 100644
--- a/lib/XML/LibXML/Parser.pod
+++ b/lib/XML/LibXML/Parser.pod
@@ -984,7 +984,7 @@ Petr Pajas
=head1 VERSION
-2.0200
+2.0201
=head1 COPYRIGHT
diff --git a/lib/XML/LibXML/Pattern.pod b/lib/XML/LibXML/Pattern.pod
index d338d58..7eebfff 100644
--- a/lib/XML/LibXML/Pattern.pod
+++ b/lib/XML/LibXML/Pattern.pod
@@ -94,7 +94,7 @@ Petr Pajas
=head1 VERSION
-2.0200
+2.0201
=head1 COPYRIGHT
diff --git a/lib/XML/LibXML/Reader.pm b/lib/XML/LibXML/Reader.pm
index f698535..8856f57 100644
--- a/lib/XML/LibXML/Reader.pm
+++ b/lib/XML/LibXML/Reader.pm
@@ -14,7 +14,7 @@ use strict;
use warnings;
use vars qw ($VERSION);
-$VERSION = "2.0200"; # VERSION TEMPLATE: DO NOT CHANGE
+$VERSION = "2.0201"; # VERSION TEMPLATE: DO NOT CHANGE
use 5.008_000;
diff --git a/lib/XML/LibXML/Reader.pod b/lib/XML/LibXML/Reader.pod
index bfcba53..1745e26 100644
--- a/lib/XML/LibXML/Reader.pod
+++ b/lib/XML/LibXML/Reader.pod
@@ -657,7 +657,7 @@ Petr Pajas
=head1 VERSION
-2.0200
+2.0201
=head1 COPYRIGHT
diff --git a/lib/XML/LibXML/RegExp.pod b/lib/XML/LibXML/RegExp.pod
index 56f0a6c..983ab92 100644
--- a/lib/XML/LibXML/RegExp.pod
+++ b/lib/XML/LibXML/RegExp.pod
@@ -58,7 +58,7 @@ Petr Pajas
=head1 VERSION
-2.0200
+2.0201
=head1 COPYRIGHT
diff --git a/lib/XML/LibXML/RelaxNG.pod b/lib/XML/LibXML/RelaxNG.pod
index 6afc826..dee2a0e 100644
--- a/lib/XML/LibXML/RelaxNG.pod
+++ b/lib/XML/LibXML/RelaxNG.pod
@@ -70,7 +70,7 @@ Petr Pajas
=head1 VERSION
-2.0200
+2.0201
=head1 COPYRIGHT
diff --git a/lib/XML/LibXML/SAX.pm b/lib/XML/LibXML/SAX.pm
index 19a0bb2..3c685bc 100644
--- a/lib/XML/LibXML/SAX.pm
+++ b/lib/XML/LibXML/SAX.pm
@@ -14,7 +14,7 @@ use warnings;
use vars qw($VERSION @ISA);
-$VERSION = "2.0200"; # VERSION TEMPLATE: DO NOT CHANGE
+$VERSION = "2.0201"; # VERSION TEMPLATE: DO NOT CHANGE
use XML::LibXML;
use XML::SAX::Base;
diff --git a/lib/XML/LibXML/SAX.pod b/lib/XML/LibXML/SAX.pod
index 5f7d2a8..4f848db 100644
--- a/lib/XML/LibXML/SAX.pod
+++ b/lib/XML/LibXML/SAX.pod
@@ -47,7 +47,7 @@ Petr Pajas
=head1 VERSION
-2.0200
+2.0201
=head1 COPYRIGHT
diff --git a/lib/XML/LibXML/SAX/Builder.pm b/lib/XML/LibXML/SAX/Builder.pm
index 2ca4a99..fb5c51c 100644
--- a/lib/XML/LibXML/SAX/Builder.pm
+++ b/lib/XML/LibXML/SAX/Builder.pm
@@ -21,7 +21,7 @@ sub CLONE_SKIP {
return $XML::LibXML::__threads_shared ? 0 : 1;
}
-$VERSION = "2.0200"; # VERSION TEMPLATE: DO NOT CHANGE
+$VERSION = "2.0201"; # VERSION TEMPLATE: DO NOT CHANGE
sub new {
my $class = shift;
diff --git a/lib/XML/LibXML/SAX/Builder.pod b/lib/XML/LibXML/SAX/Builder.pod
index 3192334..4dd6b4b 100644
--- a/lib/XML/LibXML/SAX/Builder.pod
+++ b/lib/XML/LibXML/SAX/Builder.pod
@@ -38,7 +38,7 @@ Petr Pajas
=head1 VERSION
-2.0200
+2.0201
=head1 COPYRIGHT
diff --git a/lib/XML/LibXML/SAX/Generator.pm b/lib/XML/LibXML/SAX/Generator.pm
index cb91b20..0ad3035 100644
--- a/lib/XML/LibXML/SAX/Generator.pm
+++ b/lib/XML/LibXML/SAX/Generator.pm
@@ -15,7 +15,7 @@ use warnings;
use XML::LibXML;
use vars qw ($VERSION);
-$VERSION = "2.0200"; # VERSION TEMPLATE: DO NOT CHANGE
+$VERSION = "2.0201"; # VERSION TEMPLATE: DO NOT CHANGE
sub CLONE_SKIP {
return $XML::LibXML::__threads_shared ? 0 : 1;
diff --git a/lib/XML/LibXML/SAX/Parser.pm b/lib/XML/LibXML/SAX/Parser.pm
index 6597348..3b1723f 100644
--- a/lib/XML/LibXML/SAX/Parser.pm
+++ b/lib/XML/LibXML/SAX/Parser.pm
@@ -18,7 +18,7 @@ use XML::LibXML::Common qw(:libxml);
use XML::SAX::Base;
use XML::SAX::DocumentLocator;
-$VERSION = "2.0200"; # VERSION TEMPLATE: DO NOT CHANGE
+$VERSION = "2.0201"; # VERSION TEMPLATE: DO NOT CHANGE
@ISA = ('XML::SAX::Base');
sub CLONE_SKIP {
diff --git a/lib/XML/LibXML/Schema.pod b/lib/XML/LibXML/Schema.pod
index 3c34531..58185e8 100644
--- a/lib/XML/LibXML/Schema.pod
+++ b/lib/XML/LibXML/Schema.pod
@@ -66,7 +66,7 @@ Petr Pajas
=head1 VERSION
-2.0200
+2.0201
=head1 COPYRIGHT
diff --git a/lib/XML/LibXML/Text.pod b/lib/XML/LibXML/Text.pod
index a5ff615..89d9b7e 100644
--- a/lib/XML/LibXML/Text.pod
+++ b/lib/XML/LibXML/Text.pod
@@ -170,7 +170,7 @@ Petr Pajas
=head1 VERSION
-2.0200
+2.0201
=head1 COPYRIGHT
diff --git a/lib/XML/LibXML/XPathContext.pm b/lib/XML/LibXML/XPathContext.pm
index 8be1460..8e6db87 100644
--- a/lib/XML/LibXML/XPathContext.pm
+++ b/lib/XML/LibXML/XPathContext.pm
@@ -17,7 +17,7 @@ use Carp;
use XML::LibXML;
use XML::LibXML::NodeList;
-$VERSION = "2.0200"; # VERSION TEMPLATE: DO NOT CHANGE
+$VERSION = "2.0201"; # VERSION TEMPLATE: DO NOT CHANGE
# should LibXML XPath data types be used for simple objects
# when passing parameters to extension functions (default: no)
diff --git a/lib/XML/LibXML/XPathContext.pod b/lib/XML/LibXML/XPathContext.pod
index 4110543..ec76860 100644
--- a/lib/XML/LibXML/XPathContext.pod
+++ b/lib/XML/LibXML/XPathContext.pod
@@ -362,7 +362,7 @@ Petr Pajas
=head1 VERSION
-2.0200
+2.0201
=head1 COPYRIGHT
diff --git a/lib/XML/LibXML/XPathExpression.pod b/lib/XML/LibXML/XPathExpression.pod
index 9ba8bd1..490e9be 100644
--- a/lib/XML/LibXML/XPathExpression.pod
+++ b/lib/XML/LibXML/XPathExpression.pod
@@ -52,7 +52,7 @@ Petr Pajas
=head1 VERSION
-2.0200
+2.0201
=head1 COPYRIGHT