Mercurial > libervia-pubsub
changeset 208:cc4f45ef793e
Commit 0.8.1 release to SVN.
author | Ralph Meijer <ralphm@ik.nu> |
---|---|
date | Tue, 09 Sep 2008 14:54:33 +0000 |
parents | 43a4d0d6c076 |
children | 7f3ffb7a1a9e |
files | MANIFEST.in NEWS README UPGRADING idavoll/tap.py setup.py |
diffstat | 6 files changed, 28 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/MANIFEST.in Tue Aug 05 18:23:45 2008 +0000 +++ b/MANIFEST.in Tue Sep 09 14:54:33 2008 +0000 @@ -1,4 +1,5 @@ include INSTALL include LICENSE include NEWS +include db/* graft twisted
--- a/NEWS Tue Aug 05 18:23:45 2008 +0000 +++ b/NEWS Tue Sep 09 14:54:33 2008 +0000 @@ -1,3 +1,9 @@ +0.8.1 (2008-08-05) +================== + + - Include database schema files in distribution. + + 0.8.0 (2008-08-05) ==================
--- a/README Tue Aug 05 18:23:45 2008 +0000 +++ b/README Tue Sep 09 14:54:33 2008 +0000 @@ -1,4 +1,4 @@ -Idavoll 0.8.0 +Idavoll 0.8.1 What is this? ================
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/UPGRADING Tue Sep 09 14:54:33 2008 +0000 @@ -0,0 +1,18 @@ +Upgrading +========= + +To 0.8.0 +======== + +This release includes an optional HTTP interface with a gateway to subscribe +to remote nodes. The subscriptions and associated callbacks are stored in +the database if the PostgreSQL storage backend is used. This requires a new +table, of which the schema is in db/gateway.sql: + + psql -e pubsub <db/gateway.sql + +The schema of the other tables has also changed significantly compared to +0.7.3 and older. For these changes, there is an upgrade script in the form +of a series of SQL statements to be run against an database with the older schema: db/to_idavoll_0.8.sql, like so: + + psql -e pubsub <db/to_idavoll_0.8.sql
--- a/idavoll/tap.py Tue Aug 05 18:23:45 2008 +0000 +++ b/idavoll/tap.py Tue Sep 09 14:54:33 2008 +0000 @@ -12,7 +12,7 @@ from idavoll.backend import BackendService -__version__ = '0.8.0' +__version__ = '0.8.1' class Options(usage.Options): optParameters = [
--- a/setup.py Tue Aug 05 18:23:45 2008 +0000 +++ b/setup.py Tue Sep 09 14:54:33 2008 +0000 @@ -15,7 +15,7 @@ install_requires.append('uuid') setup(name='idavoll', - version='0.8.0', + version='0.8.1', description='Jabber Publish-Subscribe Service Component', author='Ralph Meijer', author_email='ralphm@ik.nu',