diff --git a/NEWS b/NEWS index 23684e23..7b7cee8b 100644 --- a/NEWS +++ b/NEWS @@ -3,24 +3,28 @@ NEWS ==== :Authors: Toshio Kuratomi, Luke Macken, Ricky Elrod, Patrick Uiterwijk, Ralph Bean -:Date: TBD -:Version: 0.11.x +:Version: 1.0.0 ------ -0.11.x +1.0.0 ------ +Backwards incompatible: +* Removed fedora.client.bodhi. * Drop support for Django * Drop support for TurboGears1 * Drop support for TurboGears2 +* Drop support for flask_fas ------------- -Next release ------------- +New features: -Backwards incompatible: +* OpenIDCBaseClient now supports a client_secret argument +* Add support for PUT and DELETE requests to OpenIdBaseClient 'send_request' method. +* Make flask_fas_openid compatible with flask >= 1.0 -* Removed fedora.client.bodhi. +Bugfixes + +* OpenIdBaseClient The encoding arg of json.loads() is ignored and deprecated ------ diff --git a/fedora/release.py b/fedora/release.py index 77800153..4305baf8 100644 --- a/fedora/release.py +++ b/fedora/release.py @@ -4,7 +4,7 @@ NAME = 'python-fedora' -VERSION = '0.10.0' +VERSION = '1.0.0' DESCRIPTION = 'Python modules for interacting with Fedora Services' LONG_DESCRIPTION = ''' The Fedora Project runs many different services. These services help us to @@ -13,7 +13,7 @@ ''' AUTHOR = 'Toshio Kuratomi, Luke Macken, Ricky Elrod, Ralph Bean, Patrick Uiterwijk' EMAIL = 'admin@fedoraproject.org' -COPYRIGHT = '2007-2018 Red Hat, Inc.' +COPYRIGHT = '2007-2020 Red Hat, Inc.' URL = 'https://github.com/fedora-infra/python-fedora' DOWNLOAD_URL = 'https://pypi.python.org/pypi/python-fedora' LICENSE = 'LGPLv2+' diff --git a/setup.py b/setup.py index f7e664f1..944398d3 100755 --- a/setup.py +++ b/setup.py @@ -47,8 +47,8 @@ 'Intended Audience :: Developers', 'Intended Audience :: System Administrators', 'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)', - 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.4', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Software Development :: Libraries :: Python Modules', ],