summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis-Francis Ratté-Boulianne <louis-francis.ratte-boulianne@collabora.co.uk>2009-09-10 09:59:22 -0400
committerLouis-Francis Ratté-Boulianne <louis-francis.ratte-boulianne@collabora.co.uk>2009-09-14 10:52:48 -0400
commit8a71a4dbb0dc659f700ff6ca51644209b92ca0fb (patch)
tree713c8fe02ba7718599fa9e7e8742af9c0b51e5da
parent6f489073e3e855235c0230c2c9d281738db57099 (diff)
Prepare tp-butterfly 0.5.1telepathy-butterfly-0.5.1
-rw-r--r--NEWS10
-rwxr-xr-xtelepathy-butterfly8
-rw-r--r--wscript2
3 files changed, 13 insertions, 7 deletions
diff --git a/NEWS b/NEWS
index 0b46941..cbe5beb 100644
--- a/NEWS
+++ b/NEWS
@@ -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)
diff --git a/wscript b/wscript
index 40d8586..5fe99c3 100644
--- a/wscript
+++ b/wscript
@@ -1,6 +1,6 @@
#!/usr/bin/env python
-VERSION = '0.5.0.1'
+VERSION = '0.5.1'
APPNAME = 'telepathy-butterfly'
srcdir = '.'