Update of /cvsroot/perl-xml/xml-simple
In directory usw-pr-cvs1:/tmp/cvs-serv20602
Modified Files:
Tag: Release-1_06-maint
Changes MANIFEST README Simple.pm
Removed Files:
Tag: Release-1_06-maint
convert
Log Message:
Release 1.08:
- release of 1.06 (no SAX code) with minor fixes ...
- searchpath defaults to current directory
- fix to Storable test routine for test failures on Win32
- removed obselete 'convert' script from distribution
Index: Changes
===================================================================
RCS file: /cvsroot/perl-xml/xml-simple/Changes,v
retrieving revision 1.1.1.1
retrieving revision 1.1.1.1.2.1
diff -u -d -r1.1.1.1 -r1.1.1.1.2.1
--- Changes 2 Dec 2001 15:50:35 -0000 1.1.1.1
+++ Changes 9 Feb 2002 22:13:34 -0000 1.1.1.1.2.1
@@ -1,5 +1,13 @@
Revision history for Perl module XML::Simple
+1.08 Feb 09 2002
+ - re-release of 1.06 (stable) with minor updates ...
+ - searchpath option now defaults to current directory if not set
+ - fix to Storable test routine for test failures on Win32
+ - removed obselete 'convert' script from distribution
+
+1.07b Feb 05 2002 - beta release for testing SAX support
+
1.06 Nov 19 2001
- fixed version number in default xmldecl (thanks to Matt Sergeant for
bug report and patch)
Index: MANIFEST
===================================================================
RCS file: /cvsroot/perl-xml/xml-simple/MANIFEST,v
retrieving revision 1.1.1.1
retrieving revision 1.1.1.1.2.1
diff -u -d -r1.1.1.1 -r1.1.1.1.2.1
--- MANIFEST 2 Dec 2001 15:50:35 -0000 1.1.1.1
+++ MANIFEST 9 Feb 2002 22:13:34 -0000 1.1.1.1.2.1
@@ -3,7 +3,6 @@
Makefile.PL
README
Simple.pm
-convert
maketest
t/1_XMLin.t
t/1_XMLin.xml
Index: README
===================================================================
RCS file: /cvsroot/perl-xml/xml-simple/README,v
retrieving revision 1.1.1.1
retrieving revision 1.1.1.1.2.1
diff -u -d -r1.1.1.1 -r1.1.1.1.2.1
--- README 2 Dec 2001 15:50:35 -0000 1.1.1.1
+++ README 9 Feb 2002 22:13:34 -0000 1.1.1.1.2.1
@@ -30,7 +30,7 @@
STATUS
- This version (1.06) is the current stable release. This version is
+ This version (1.08) is the current stable release. This version is
believed to be thread-safe.
Please send any feedback to the author: gr...@cp...
@@ -38,15 +38,17 @@
NEW IN THIS RELEASE
- - minor change to fix version number in default xmldecl (from '1' to '1.0')
- - updated contact email address for author
+ This is a re-release of 1.06 (stable) with minor updates:
+ - searchpath option now defaults to current directory if not set
+ - fix to Storable test routine for test failures on Win32
+ - removed obselete 'convert' script from distribution
See 'Changes' for a detailed history.
COPYRIGHT
- Copyright 1999-2001 Grant McLean <gr...@cp...>
+ Copyright 1999-2002 Grant McLean <gr...@cp...>
This library is free software; you can redistribute it
and/or modify it under the same terms as Perl itself.
Index: Simple.pm
===================================================================
RCS file: /cvsroot/perl-xml/xml-simple/Simple.pm,v
retrieving revision 1.1.1.1.2.1
retrieving revision 1.1.1.1.2.2
diff -u -d -r1.1.1.1.2.1 -r1.1.1.1.2.2
--- Simple.pm 7 Feb 2002 22:47:55 -0000 1.1.1.1.2.1
+++ Simple.pm 9 Feb 2002 22:13:34 -0000 1.1.1.1.2.2
@@ -1,3 +1,5 @@
+# $Id$
+
package XML::Simple;
=head1 NAME
@@ -1908,7 +1910,7 @@
=head1 STATUS
-This version (1.06) is the current stable version.
+This version (1.08) is the current stable version.
=head1 SEE ALSO
--- convert DELETED ---
|