From 3ca00adce4a854184713acdfa2cd1d3c2bf43eed Mon Sep 17 00:00:00 2001 From: Piotr Staroszczyk Date: Sat, 20 May 2017 15:31:38 +0200 Subject: [PATCH] v0.2.17 --- CHANGELOG.rst | 5 ++++- fut/__init__.py | 2 +- setup.py | 48 ++++++++++++++++++++++++------------------------ 3 files changed, 29 insertions(+), 26 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f18bc6a..9565eb3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,10 +4,13 @@ Changelog --------- -0.2.17 (2017-05-?) +0.2.17 (2017-05-20) ^^^^^^^^^^^^^^^^^^^ * fix #262 searchAuctions && piles returns empty list when no results found +* fix wrong fut version in referer on login (thanks to xAranaktu #263) +* init usermassinfo functionality (thanks to xAranaktu #263) +* add tradingEnabled check on login (thanks to xAranaktu #263) 0.2.16 (2017-05-17) ^^^^^^^^^^^^^^^^^^^ diff --git a/fut/__init__.py b/fut/__init__.py index 2c20632..1f73143 100644 --- a/fut/__init__.py +++ b/fut/__init__.py @@ -23,7 +23,7 @@ """ __title__ = 'fut' -__version__ = '0.2.16' +__version__ = '0.2.17' __author__ = 'Piotr Staroszczyk' __author_email__ = 'piotr.staroszczyk@get24.org' __license__ = 'GNU GPL v3' diff --git a/setup.py b/setup.py index 5237f35..8466ab6 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ __title__ = 'fut' -__version__ = '0.2.16' +__version__ = '0.2.17' __author__ = 'Piotr Staroszczyk' __author_email__ = 'piotr.staroszczyk@get24.org' __license__ = 'GNU GPL v3' @@ -44,29 +44,29 @@ install_requires=requires, # license=open('LICENSE').read(), license=__license__, - # classifiers=( - # 'Development Status :: 3 - Alpha', - # # 'Development Status :: 4 - Beta', - # 'Intended Audience :: Developers', - # 'Natural Language :: English', - # 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', - # 'Programming Language :: Python', - # 'Programming Language :: Python :: 2.6', - # 'Programming Language :: Python :: 2.7', - # 'Programming Language :: Python :: 3', - # # 'Programming Language :: Python :: 3.0', # not tested - # # 'Programming Language :: Python :: 3.1', # not tested - # # 'Programming Language :: Python :: 3.2', # dropped due requests incomapitibility - # 'Programming Language :: Python :: 3.3', - # 'Programming Language :: Python :: 3.4', - # 'Programming Language :: Python :: 3.5', - # 'Programming Language :: Python :: 3.6', - # 'Programming Language :: Python :: Implementation :: CPython', - # # 'Programming Language :: Python :: Implementation :: IronPython', # not tested - # 'Programming Language :: Python :: Implementation :: PyPy', - # 'Topic :: Internet :: WWW/HTTP :: Site Management', - # 'Topic :: Software Development :: Libraries :: Python Modules', - # ), + classifiers=[ + 'Development Status :: 3 - Alpha', + # 'Development Status :: 4 - Beta', + 'Intended Audience :: Developers', + 'Natural Language :: English', + 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + # 'Programming Language :: Python :: 3.0', # not tested + # 'Programming Language :: Python :: 3.1', # not tested + # 'Programming Language :: Python :: 3.2', # dropped due requests incomapitibility + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: Implementation :: CPython', + # 'Programming Language :: Python :: Implementation :: IronPython', # not tested + 'Programming Language :: Python :: Implementation :: PyPy', + 'Topic :: Internet :: WWW/HTTP :: Site Management', + 'Topic :: Software Development :: Libraries :: Python Modules', + ], # entry_points={ # 'console_scripts': [ # 'fut = fut.cli:main',