Skip to content

Commit

Permalink
Prep for 0.71 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rjray committed Dec 8, 2009
1 parent 9d27372 commit 0249411
Show file tree
Hide file tree
Showing 4 changed files with 94 additions and 47 deletions.
29 changes: 28 additions & 1 deletion ChangeLog
Expand Up @@ -9,6 +9,33 @@
allowing choice of character-set encodings for
XML messages.

0.71 Monday December 7, 2009, 08:00:00 PM -0700

* MANIFEST
* t/01_pod.t (deleted)
* t/02_pod_coverage.t (deleted)
* t/03_meta.t (deleted)
* t/04_minimumversion.t (deleted)
* t/05_critic.t (deleted)
* xt/01_pod.t (added)
* xt/02_pod_coverage.t (added)
* xt/03_meta.t (added)
* xt/04_minimumversion.t (added)
* xt/05_critic.t (added)
Moved author-only tests to xt/, updated MANIFEST.

* MANIFEST
Add test suite 28_parser_bugs_50013.t, which was omitted from
last release.

* xt/01_pod.t
* xt/02_pod_coverage.t
* xt/03_meta.t
* xt/04_minimumversion.t
* xt/05_critic.t
Re-engineered the author-only/release tests, since they're no
longer in the t/ directory and thus should not interfere.

0.70 Sunday December 6, 2009, 10:00:00 PM -0700

* lib/RPC/XML.pm
Expand Down Expand Up @@ -1297,7 +1324,7 @@
* *
All files are tracked from this point forward.

# Generated on Sunday December 6, 2009, 10:00:42 PM -0800
# Generated on Monday December 7, 2009, 07:59:45 PM -0800
# Using changelog2x/0.11, App::Changelog2x/0.11, XML::LibXML/1.70,
# XML::LibXSLT/1.70, libxml/2.6.32, libxslt/1.1.24 (with exslt)
# XSLT sources:
Expand Down
40 changes: 40 additions & 0 deletions ChangeLog.xml
Expand Up @@ -15,6 +15,46 @@
extensions to the base protocol in terms of supporting HTTP/1.1 and
allowing choice of character-set encodings for XML messages.
</description>
<release date="2009-12-07T20:00:00-07:00" version="0.71" sc:tag="0.71">
<change git:commit="8cc9534a7da336de8c646ff1bc473ce531f43cd6">
<fileset>
<file path="MANIFEST" />
<file path="t/01_pod.t" action="DELETE" />
<file path="t/02_pod_coverage.t" action="DELETE" />
<file path="t/03_meta.t" action="DELETE" />
<file path="t/04_minimumversion.t" action="DELETE" />
<file path="t/05_critic.t" action="DELETE" />
<file path="xt/01_pod.t" action="ADD" />
<file path="xt/02_pod_coverage.t" action="ADD" />
<file path="xt/03_meta.t" action="ADD" />
<file path="xt/04_minimumversion.t" action="ADD" />
<file path="xt/05_critic.t" action="ADD" />
</fileset>
<description>
Moved author-only tests to xt/, updated MANIFEST.
</description>
</change>
<change git:commit="eb38e38dafe8491185a8638f4842fa419022b5c4">
<file path="MANIFEST" />
<description>
Add test suite 28_parser_bugs_50013.t, which was omitted from last
release.
</description>
</change>
<change git:commit="9d273720c0163349c9822a1f79b676d8227bdd7c">
<fileset>
<file path="xt/01_pod.t" />
<file path="xt/02_pod_coverage.t" />
<file path="xt/03_meta.t" />
<file path="xt/04_minimumversion.t" />
<file path="xt/05_critic.t" />
</fileset>
<description>
Re-engineered the author-only/release tests, since they're no longer in
the t/ directory and thus should not interfere.
</description>
</change>
</release>
<release date="2009-12-06T22:00:00-07:00" version="0.70" sc:tag="0.70">
<change git:commit="8e62c642a888608cf60fc190abcb60a49c061d73">
<fileset>
Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Expand Up @@ -68,7 +68,7 @@ find(sub {

WriteMakefile(
NAME => 'RPC::XML',
VERSION => '0.70',
VERSION => '0.71',
AUTHOR => 'Randy J. Ray',
ABSTRACT => 'Data, client and server classes for XML-RPC',
EXE_FILES => \@scripts,
Expand Down
70 changes: 25 additions & 45 deletions README
@@ -1,6 +1,6 @@
RPC::XML - An implementation of XML-RPC

Version: 0.70
Version: 0.71

WHAT IS IT

Expand Down Expand Up @@ -66,47 +66,27 @@ The LGPL 2.1: http://www.opensource.org/licenses/lgpl-2.1.php

CHANGES

* lib/RPC/XML.pm
* t/10_data.t
RT #49406: Make Base64 data-type allow zero-length data.

* lib/RPC/XML.pm
* t/10_data.t
Hand-applied a patch (most likely from Bill Moseley) to extend
the construction of dateTime.iso8601 data-types.

* t/40_server.t
Fixed another corner-case for the url() test.

* lib/RPC/XML.pm
Fixed a case from previous work that caused "undef" warnings.

* lib/RPC/XML.pm
* lib/RPC/XML/Parser.pm
* t/28_parser_bugs_50013.t
RT #50013: Restore backwards-compatibility for projects that
use RPC::XML::Parser directly.

* lib/RPC/XML/Procedure.pm
RT #50143: Incorrectly called server_fault() as if it were a
coderef.

* lib/Apache/RPC/Server.pm
Applied patch from Frank Wiegand to fix a POD problem.

* lib/RPC/XML.pm
Some additional regexp issues on dateTime.iso8601, to handle
backwards-compatibility.

* lib/RPC/XML/ParserFactory.pm
Fixed some minor doc errors.

* lib/RPC/XML/Parser/XMLParser.pm
Moved the 'require' of some libraries to the point where they
are first needed, to delay loading until/unless necessary.

* lib/RPC/XML/Parser/XMLLibXML.pm (added)
* t/21_xml_libxml.t (added)
* t/29_parserfactory.t
* t/40_server_xmllibxml.t (added)
Implement support for XML::LibXML in the parser-factory.
* MANIFEST
* t/01_pod.t (deleted)
* t/02_pod_coverage.t (deleted)
* t/03_meta.t (deleted)
* t/04_minimumversion.t (deleted)
* t/05_critic.t (deleted)
* xt/01_pod.t (added)
* xt/02_pod_coverage.t (added)
* xt/03_meta.t (added)
* xt/04_minimumversion.t (added)
* xt/05_critic.t (added)
Moved author-only tests to xt/, updated MANIFEST.

* MANIFEST
Add test suite 28_parser_bugs_50013.t, which was omitted from
last release.

* xt/01_pod.t
* xt/02_pod_coverage.t
* xt/03_meta.t
* xt/04_minimumversion.t
* xt/05_critic.t
Re-engineered the author-only/release tests, since they're no
longer in the t/ directory and thus should not interfere.

0 comments on commit 0249411

Please sign in to comment.