# HG changeset patch # User Ralph Meijer # Date 1239181648 0 # Node ID edabaa535476d5b2a2f5e23aad535799d156b677 # Parent bfc198af5d27d95f1e6e5ef9ad86291c265b570c These files also belong to the Idavoll 0.9.0 release. diff -r bfc198af5d27 -r edabaa535476 INSTALL --- a/INSTALL Wed Apr 08 09:06:39 2009 +0000 +++ b/INSTALL Wed Apr 08 09:07:28 2009 +0000 @@ -8,7 +8,7 @@ - Twisted Web2 (for idavoll-http) - Twisted Words - uuid.py (Python 2.5 std. lib. or http://pypi.python.org/pypi/uuid) -- Wokkel >= 0.4.0 (http://wokkel.ik.nu/) +- Wokkel >= 0.5.0 (http://wokkel.ik.nu/) - simplejson (for idavoll-http) - A Jabber server that supports the component protocol (XEP-0114) diff -r bfc198af5d27 -r edabaa535476 LICENSE --- a/LICENSE Wed Apr 08 09:06:39 2009 +0000 +++ b/LICENSE Wed Apr 08 09:07:28 2009 +0000 @@ -1,4 +1,4 @@ -Copyright (c) 2003-2008 Ralph Meijer +Copyright (c) 2003-2009 Ralph Meijer Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff -r bfc198af5d27 -r edabaa535476 NEWS --- a/NEWS Wed Apr 08 09:06:39 2009 +0000 +++ b/NEWS Wed Apr 08 09:07:28 2009 +0000 @@ -1,3 +1,11 @@ +0.9.0 (2009-04-07) +================== + + - Track changes to Wokkel, require version 0.5.0. + - Add support for node deletion with redirect. + - Fix error reporting for older Python versions. + + 0.8.1 (2008-08-05) ================== diff -r bfc198af5d27 -r edabaa535476 README --- a/README Wed Apr 08 09:06:39 2009 +0000 +++ b/README Wed Apr 08 09:07:28 2009 +0000 @@ -1,4 +1,4 @@ -Idavoll 0.8.1 +Idavoll 0.9.0 What is this? ================ @@ -27,7 +27,7 @@ Copyright ========= -All of the code in this distribution is Copyright (c) 2003-2008 Ralph Meijer. +All of the code in this distribution is Copyright (c) 2003-2009 Ralph Meijer. Idavoll is made available under the MIT license. The included LICENSE file describes this in detail. diff -r bfc198af5d27 -r edabaa535476 setup.py --- a/setup.py Wed Apr 08 09:06:39 2009 +0000 +++ b/setup.py Wed Apr 08 09:07:28 2009 +0000 @@ -1,13 +1,13 @@ #!/usr/bin/env python -# Copyright (c) 2003-2008 Ralph Meijer +# Copyright (c) 2003-2009 Ralph Meijer # See LICENSE for details. import sys from setuptools import setup install_requires = [ - 'wokkel >= 0.4.0', + 'wokkel >= 0.5.0', 'simplejson', ] @@ -15,7 +15,7 @@ install_requires.append('uuid') setup(name='idavoll', - version='0.8.1', + version='0.9.0', description='Jabber Publish-Subscribe Service Component', author='Ralph Meijer', author_email='ralphm@ik.nu',