Skip to content

Commit

Permalink
v0.2.17
Browse files Browse the repository at this point in the history
  • Loading branch information
oczkers committed May 20, 2017
1 parent d7fa5b8 commit 3ca00ad
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 26 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
^^^^^^^^^^^^^^^^^^^
Expand Down
2 changes: 1 addition & 1 deletion fut/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
48 changes: 24 additions & 24 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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',
Expand Down

0 comments on commit 3ca00ad

Please sign in to comment.