From d60992bf4dae611a41a160176ddcac40cd707f06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Kone=C4=8Dn=C3=BD?= Date: Thu, 23 Feb 2023 14:27:44 +0100 Subject: [PATCH] Prepare for 1.1.4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Konečný --- doc/changelog.rst | 12 ++++++++++++ setup.py | 5 +++-- 2 files changed, 15 insertions(+), 2 deletions(-) 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,