# HG changeset patch # User Ralph Meijer # Date 1169129174 0 # Node ID 0c9001bc7f58213fcedcbf1bc56dab1139737d9e # Parent 40d931ed15b91baa2b19d9ba5a2e477044193c86 Release 0.6.0. diff -r 40d931ed15b9 -r 0c9001bc7f58 NEWS --- a/NEWS Thu Jan 18 13:52:39 2007 +0000 +++ b/NEWS Thu Jan 18 14:06:14 2007 +0000 @@ -1,4 +1,4 @@ -x.x.x (yyyy-mm-dd) +0.6.0 (2007-01-18) - Improve error handling by using stanza error support in Twisted Words 0.4.0. - Bring errors up to date with version 1.8 of JEP-0060. @@ -6,6 +6,7 @@ configuration. - Fully comply with access model 'open'. - Add --dbpass option for PostgreSQL backend. + - Fix import incompatibility with Twisted Words 0.5.0 (#3). 0.5.0 (2006-08-17) ================== diff -r 40d931ed15b9 -r 0c9001bc7f58 idavoll/idavoll.py --- a/idavoll/idavoll.py Thu Jan 18 13:52:39 2007 +0000 +++ b/idavoll/idavoll.py Thu Jan 18 14:06:14 2007 +0000 @@ -13,7 +13,7 @@ except ImportError: from twisted.words.protocols.jabber.component import IService -__version__ = '0.5.0' +__version__ = '0.6.0' NS_VERSION = 'jabber:iq:version' diff -r 40d931ed15b9 -r 0c9001bc7f58 setup.py --- a/setup.py Thu Jan 18 13:52:39 2007 +0000 +++ b/setup.py Thu Jan 18 14:06:14 2007 +0000 @@ -6,7 +6,7 @@ from distutils.core import setup setup(name='idavoll', - version='0.5.0', + version='0.6.0', description='Jabber Publish-Subscribe Service Component', author='Ralph Meijer', author_email='ralphm@ik.nu',