diff options
author | Louis-Francis Ratté-Boulianne <louis-francis.ratte-boulianne@collabora.co.uk> | 2009-09-10 09:59:22 -0400 |
---|---|---|
committer | Louis-Francis Ratté-Boulianne <louis-francis.ratte-boulianne@collabora.co.uk> | 2009-09-14 10:52:48 -0400 |
commit | 8a71a4dbb0dc659f700ff6ca51644209b92ca0fb (patch) | |
tree | 713c8fe02ba7718599fa9e7e8742af9c0b51e5da | |
parent | 6f489073e3e855235c0230c2c9d281738db57099 (diff) |
Prepare tp-butterfly 0.5.1telepathy-butterfly-0.5.1
-rw-r--r-- | NEWS | 10 | ||||
-rwxr-xr-x | telepathy-butterfly | 8 | ||||
-rw-r--r-- | wscript | 2 |
3 files changed, 13 insertions, 7 deletions
@@ -1,10 +1,16 @@ -telepathy-butterfly-0.5.1 (UNRELEASED) +telepathy-butterfly-0.5.1 (14-09-2009) ====================================== +The "if you look real closely you can see the butterflies mating" release. + Dependencies: * python 2.5 * papyon 0.4.2 - * telepathy-python 0.15.9 + * telepathy-python 0.15.11 + +Enhancements: + * Add support for audio/video conferences + * Implement the Debug interface Fixes: * Don't add a contact to the publish and subscribe lists at the same time diff --git a/telepathy-butterfly b/telepathy-butterfly index 667a1c7..519c934 100755 --- a/telepathy-butterfly +++ b/telepathy-butterfly @@ -30,13 +30,13 @@ if sys.version_info < (2, 5): sys.exit(1) import telepathy -if telepathy.version < (0, 15, 9): - print >> sys.stderr, 'Critical: telepathy-python >= 0.15.9 required. Exiting.' +if telepathy.version < (0, 15, 11): + print >> sys.stderr, 'Critical: telepathy-python >= 0.15.11 required. Exiting.' sys.exit(1) import papyon -if papyon.version < (0, 4, 1): - print >> sys.stderr, 'Critical: papyon >= 0.4.1 required. Exiting.' +if papyon.version < (0, 4, 2): + print >> sys.stderr, 'Critical: papyon >= 0.4.2 required. Exiting.' sys.exit(1) @@ -1,6 +1,6 @@ #!/usr/bin/env python -VERSION = '0.5.0.1' +VERSION = '0.5.1' APPNAME = 'telepathy-butterfly' srcdir = '.' |