# HG changeset patch # User paulb # Date 1134321985 0 # Node ID c9107c0605f9fa1e46812adbecc6c92ffe01483f # Parent de6a9e69ae6055effb8b1a677e9f17cf3726d316 [project @ 2005-12-11 17:26:21 by paulb] Updated release information. diff -r de6a9e69ae60 -r c9107c0605f9 PKG-INFO --- a/PKG-INFO Fri Jun 20 21:43:12 2008 +0200 +++ b/PKG-INFO Sun Dec 11 17:26:25 2005 +0000 @@ -1,12 +1,12 @@ Metadata-Version: 1.1 Name: libxml2dom -Version: 0.3 +Version: 0.3.1 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.3.tar.gz +Download-url: http://www.boddie.org.uk/python/downloads/libxml2dom-0.3.1.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 de6a9e69ae60 -r c9107c0605f9 README.txt --- a/README.txt Fri Jun 20 21:43:12 2008 +0200 +++ b/README.txt Sun Dec 11 17:26:25 2005 +0000 @@ -46,6 +46,12 @@ libxml2dom.macrolib implementation, too). A way is needed to get libxml2 to do the node copying itself. +New in libxml2dom 0.3.1 (Changes since libxml2dom 0.3) +------------------------------------------------------ + + * Fixed empty namespace declarations on elements created with namespaceURI + set to None. Previously, such declarations were missing. + New in libxml2dom 0.3 (Changes since libxml2dom 0.2.4) ------------------------------------------------------ diff -r de6a9e69ae60 -r c9107c0605f9 libxml2dom/__init__.py --- a/libxml2dom/__init__.py Fri Jun 20 21:43:12 2008 +0200 +++ b/libxml2dom/__init__.py Sun Dec 11 17:26:25 2005 +0000 @@ -4,7 +4,7 @@ DOM wrapper around libxml2, specifically the libxml2mod Python extension module. """ -__version__ = "0.3" +__version__ = "0.3.1" from libxml2dom.macrolib import * from libxml2dom.macrolib import \