diff --git a/doc/changelog.rst b/doc/changelog.rst index 3a7dcf5..c8d9168 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -2,6 +2,18 @@ Changelog ========= +v1.1.4 +====== + +Developer improvements +---------------------- + +* Fix all tests to make the rpm build work + (`#535 `_) + +* Remove m2crypto - it wasn't possible to build m2ext with newer OpenSSL + (`#535 `_) + v1.1.3 ====== diff --git a/setup.py b/setup.py index e7e9b0d..5d75152 100644 --- a/setup.py +++ b/setup.py @@ -100,7 +100,7 @@ setup( name='fedmsg', - version='1.1.3', + version='1.1.4', description="Fedora Messaging Client API", long_description=long_description, author='Ralph Bean', @@ -116,8 +116,9 @@ 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', 'Topic :: System :: Networking', ], install_requires=install_requires,