Mercurial > libervia-pubsub
changeset 212:edabaa535476
These files also belong to the Idavoll 0.9.0 release.
author | Ralph Meijer <ralphm@ik.nu> |
---|---|
date | Wed, 08 Apr 2009 09:07:28 +0000 |
parents | bfc198af5d27 |
children | a321f9300054 |
files | INSTALL LICENSE NEWS README setup.py |
diffstat | 5 files changed, 15 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- 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)
--- 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
--- 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) ==================
--- 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.
--- 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',