diff --git a/debian/changelog b/debian/changelog index 11fe185..4064918 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,13 @@ +sylkserver (1.0.1) unstable; urgency=low + + * Added unicode support + * Fixed building CPIMIdentity object + * Use request URI to match rooms instead of the To header + + -- Saul Ibarra Thu, 17 Feb 2011 10:45:21 +0100 + sylkserver (1.0.0) unstable; urgency=low * Initial release -- Saul Ibarra Thu, 27 Jan 2011 17:43:11 +0100 diff --git a/sylk/__init__.py b/sylk/__init__.py index ac05c65..5474b43 100644 --- a/sylk/__init__.py +++ b/sylk/__init__.py @@ -1,25 +1,25 @@ # Copyright (C) 2010-2011 AG Projects. See LICENSE for details """SylkServer""" -__version__ = '1.0.0' +__version__ = '1.0.1' configuration_filename = "config.ini" package_requirements = {'python-application': '1.2.6', 'python-sipsimple': '0.17.1'} try: from application.dependency import ApplicationDependencies except: class DependencyError(Exception): pass class ApplicationDependencies(object): def __init__(self, *args, **kwargs): pass def check(self): raise DependencyError("need python-application version %s or higher but it's not installed" % package_requirements['python-application']) dependencies = ApplicationDependencies(**package_requirements)