# HG changeset patch # User paulb # Date 1133577432 0 # Node ID bf280fae0369f8ab82703d5258690f40b53ba772 # Parent fc78eb18aead0ba82198b5a97005fea7ad000e06 [project @ 2005-12-03 02:37:12 by paulb] Updated release information. diff -r fc78eb18aead -r bf280fae0369 PKG-INFO --- a/PKG-INFO Thu Dec 01 02:00:37 2005 +0000 +++ b/PKG-INFO Sat Dec 03 02:37:12 2005 +0000 @@ -1,12 +1,12 @@ Metadata-Version: 1.1 Name: libxml2dom -Version: 0.2.5 +Version: 0.3 Author: Paul Boddie Author-email: paul at boddie org uk Maintainer: Paul Boddie Maintainer-email: paul at boddie org uk Home-page: http://www.boddie.org.uk/python/libxml2dom.html -Download-url: http://www.boddie.org.uk/python/downloads/libxml2dom-0.2.5.tar.gz +Download-url: http://www.boddie.org.uk/python/downloads/libxml2dom-0.3.tar.gz Summary: PyXML-style API for the libxml2 Python bindings License: MIT Description: The libxml2dom package provides a traditional DOM wrapper around the Python diff -r fc78eb18aead -r bf280fae0369 README.txt --- a/README.txt Thu Dec 01 02:00:37 2005 +0000 +++ b/README.txt Sat Dec 03 02:37:12 2005 +0000 @@ -11,7 +11,7 @@ http://www.boddie.org.uk/python/libxml2dom.html Copyright and licence information can be found in the docs directory - see -docs/COPYING.txt for more information. +docs/COPYING.txt and docs/LICENCE.txt for more information. Dependencies ------------ @@ -46,12 +46,19 @@ libxml2dom.macrolib implementation, too). A way is needed to get libxml2 to do the node copying itself. -New in libxml2dom 0.2.5 (Changes since libxml2dom 0.2.4) --------------------------------------------------------- +New in libxml2dom 0.3 (Changes since libxml2dom 0.2.4) +------------------------------------------------------ + * Imposed much stricter tests on strings used with the libxml2dom API. + Strings given as arguments to methods and functions must now only contain + ASCII characters; any other character data must be provided as Unicode + objects. This change fixes various issues with XPath expressions, and + quite probably various other things. * Fixed parentNode on Document objects (which caused xml.dom.ext.PrettyPrint to crash). * Added some support for the doctype attribute and related information. + * libxml2dom is now licensed under the LGPL - see docs/COPYING.txt for + details. New in libxml2dom 0.2.4 (Changes since libxml2dom 0.2.3) --------------------------------------------------------