Changeset 228:74201da6600c
- Timestamp:
- Oct 12, 2016, 9:30:34 AM (6 years ago)
- Branch:
- default
- hg-git-rename-source:
- git
- Files:
-
- 3 added
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
NEWS
r184 r228 1 0.8.0 (xxxx-xx-xx) 2 ================== 3 4 Deprecations 5 -------- 1 16.0.0rc1 (2016-10-12) 2 ======================= 3 4 Features 5 -------- 6 - Wokkel has been ported to Python 3. 7 - wokkel.pubsub.PubSubClient now supports retrieving items by identifier. 8 9 Fixes 10 ----- 11 - wokkel.generic.Request.stanzaType now defaults to the value of the class 12 variable if `stanzaType` is not passed to `__init__` (#80). 13 - wokkel.delay.Delay.fromElement now also catches `TypeError` when parsing 14 timestamps, to work around a bug in dateutil. 15 - wokkel.muc.MUCClientProtocol now properly updates user role and affiliation 16 upon presence updates. 17 18 Deprecations and Removals 19 ------------------------- 6 20 7 21 - wokkel.generic.prepareIDNName is deprecated in favor of 8 22 unicode.encode('idna'). 23 - Python 2.6 and older are no longer supported. 24 - wokkel.compat no longer includes named and value constants (now in 25 `twisted.python.constants` through `constantly`). 26 - wokkel.compat no longer includes `BootstrapMixin` and 27 `XmlStreamServerFactory`, as they are included in the required version of 28 Twisted. 9 29 10 30 -
debian/changelog
r179 r228 1 wokkel (16.0.0~~rc1) testing; urgency=low 2 3 * Release Wokkel 16.0.0 release candidate 1. 4 5 -- Ralph Meijer <ralphm@ik.nu> Fri, 07 Oct 2016 10:32:43 +0200 6 1 7 wokkel (0.7.1) testing; urgency=low 2 8 -
doc/conf.py
r179 r228 49 49 # 50 50 # The short X.Y version. 51 version = ' 0.7'51 version = '16.0.0' 52 52 # The full version, including alpha/beta/rc tags. 53 release = ' 0.7.1'53 release = '16.0.0rc1' 54 54 55 55 # The language for content autogenerated by Sphinx. Refer to documentation -
setup.py
r214 r228 4 4 # See LICENSE for details. 5 5 6 import sys7 6 from setuptools import setup 8 7 … … 29 28 egg_info.write_toplevel_names = _hacked_write_toplevel_names 30 29 31 if sys.version_info < (3, 0): 32 requiredTwisted = "15.5.0" 33 else: 34 requiredTwisted = "16.4.0" 30 with open('README.rst', 'r') as f: 31 long_description = f.read() 35 32 36 33 setup(name='wokkel', 37 version='0.7.1',38 34 description='Twisted Jabber support library', 35 long_description = long_description, 39 36 author='Ralph Meijer', 40 37 author_email='ralphm@ik.nu', 41 38 maintainer_email='ralphm@ik.nu', 42 url='http ://wokkel.ik.nu/',39 url='https://wokkel.ik.nu/', 43 40 license='MIT', 44 41 platforms='any', 42 classifiers=[ 43 'Programming Language :: Python :: 2.7', 44 'Programming Language :: Python :: 3', 45 'Programming Language :: Python :: 3.3', 46 'Programming Language :: Python :: 3.4', 47 'Programming Language :: Python :: 3.5' 48 ], 45 49 packages=[ 46 50 'wokkel', … … 50 54 package_data={'twisted.plugins': ['twisted/plugins/server.py']}, 51 55 zip_safe=False, 56 setup_requires=[ 57 'incremental', 58 ], 59 use_incremental=True, 52 60 install_requires=[ 53 ' Twisted >= %s' % requiredTwisted,61 'incremental', 54 62 'python-dateutil', 55 63 ], 64 extras_require={ 65 ":python_version<'3'": 'Twisted[tls]>=15.5.0', 66 ":python_version>'3'": 'Twisted[tls]>=16.4.0', 67 }, 56 68 ) -
wokkel/__init__.py
r96 r228 7 7 Support library for Twisted applications using XMPP protocols. 8 8 """ 9 10 from _version import __version__ as _incremental_version 11 12 __version__ = _incremental_version.base() 13 14 __all__ = ["__version__"]
Note: See TracChangeset
for help on using the changeset viewer.