summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis-Francis Ratté-Boulianne <louis-francis.ratte-boulianne@collabora.co.uk>2011-04-14 23:02:23 -0400
committerLouis-Francis Ratté-Boulianne <louis-francis.ratte-boulianne@collabora.co.uk>2011-04-14 23:02:23 -0400
commit63bfd3b36338bc6689b7af740cf34ee7921faa72 (patch)
tree0d72cc209ff3ff9a1c3a13ea2541adc82512291c
parenta7e6a0eb9d142bd0636d48a86f92d43fdfef8f3f (diff)
Version 0.5.5papyon-0.5.5
-rw-r--r--NEWS15
-rw-r--r--papyon/__init__.py2
-rw-r--r--setup.py2
3 files changed, 17 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 3d73c7c..d0e0c74 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,18 @@
+papyon-0.5.5 (2011-04-14)
+=========================
+
+Enhancements:
+ * Send and receive preview before file transfer
+
+Fixes:
+ * Switchboards are automatically closed after one minute of inactivity
+ * Don't crash when a participant joins an external conversation (Yahoo)
+ * Incompability with P2P transfer with pidgin
+ * Some callback errors (Adding groups now works)
+
+Regression:
+ * Tests have been removed from package for now.
+
papyon-0.5.4 (2010-12-06)
=========================
diff --git a/papyon/__init__.py b/papyon/__init__.py
index 1668ffd..6a78008 100644
--- a/papyon/__init__.py
+++ b/papyon/__init__.py
@@ -26,7 +26,7 @@ instant messaging service.
@group Network Layer: gnet
"""
-version = (0, 5, 4)
+version = (0, 5, 5)
__version__ = ".".join(str(x) for x in version)
__author__ = "Youness Alaoui <kakaroto@users.sourceforge.net>"
diff --git a/setup.py b/setup.py
index 705ade6..7ec37a9 100644
--- a/setup.py
+++ b/setup.py
@@ -50,7 +50,7 @@ if pieces[-1] == '':
else:
len_root_dir = len(pieces)
-for directory in ('papyon'):
+for directory in ('papyon',):
papyon_dir = os.path.join(root_dir, directory)
for dirpath, dirnames, filenames in os.walk(papyon_dir):
# Ignore dirnames that start with '.'