Changeset 232:59f26b03d1a9
- Timestamp:
- Feb 21, 2018, 9:18:45 AM (4 years ago)
- Branch:
- default
- hg-git-rename-source:
- git
- Files:
-
- 3 added
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
NEWS
r184 r232 1 0.8.0 (xxxx-xx-xx) 2 ================== 3 4 Deprecations 5 -------- 1 18.0.0rc1 (2018-02-21) 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 r232 1 wokkel (18.0.0~~rc1) testing; urgency=low 2 3 * Release Wokkel 18.0.0 release candidate 1 4 5 -- Ralph Meijer <ralphm@ik.nu> Wed, 21 Feb 2018 09:04:28 +0100 6 1 7 wokkel (0.7.1) testing; urgency=low 2 8 -
doc/conf.py
r179 r232 49 49 # 50 50 # The short X.Y version. 51 version = ' 0.7'51 version = '18.0.0' 52 52 # The full version, including alpha/beta/rc tags. 53 release = ' 0.7.1'53 release = '18.0.0rc1' 54 54 55 55 # The language for content autogenerated by Sphinx. Refer to documentation -
setup.py
r214 r232 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 'Programming Language :: Python :: 3.6', 49 ], 45 50 packages=[ 46 51 'wokkel', … … 50 55 package_data={'twisted.plugins': ['twisted/plugins/server.py']}, 51 56 zip_safe=False, 57 setup_requires=[ 58 'incremental', 59 ], 60 use_incremental=True, 52 61 install_requires=[ 53 ' Twisted >= %s' % requiredTwisted,62 'incremental', 54 63 'python-dateutil', 55 64 ], 65 extras_require={ 66 ":python_version<'3'": 'Twisted[tls]>=15.5.0', 67 ":python_version>'3'": 'Twisted[tls]>=16.4.0', 68 }, 56 69 ) -
wokkel/__init__.py
r96 r232 7 7 Support library for Twisted applications using XMPP protocols. 8 8 """ 9 10 from wokkel._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.