diff --git a/Changelog.rst b/Changelog.rst index 447a83f..0305e92 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -1,6 +1,14 @@ Changelog ========= +0.7.0 (2019-11-08) +-------------------- +* `filter_names()` and `filter_details()` altered to get metadata for works, members and funders filters; and added egs to members and funders methods for using filters (#67) +* many typos fixed (#80) thanks @Radcliffe ! +* use of a progress bar is now possible when fetching works route data, only when doing deep paging, see `progress_bar` parameter (#77) (#82) +* `content_negotiation` fixes: `ids` parameter is now required (has no default), and must be a str or list of str (#83) +* no longer testing under Python 2 + 0.6.2 (2018-10-22) -------------------- * changelog was missing from the pypi distribution, fixed now (#71) diff --git a/Makefile b/Makefile index 3ace118..c0f6ad9 100644 --- a/Makefile +++ b/Makefile @@ -26,5 +26,8 @@ dist: register: python3 setup.py register +upload_test: + python3 -m twine upload --repository-url https://test.pypi.org/legacy/ dist/* + upload: twine upload dist/* diff --git a/habanero/__init__.py b/habanero/__init__.py index 12f4a38..25f0c5d 100644 --- a/habanero/__init__.py +++ b/habanero/__init__.py @@ -39,7 +39,7 @@ ''' __title__ = 'habanero' -__version__ = '0.6.2.3' +__version__ = '0.7.0' __author__ = 'Scott Chamberlain' __license__ = 'MIT' diff --git a/setup.py b/setup.py index bdead42..e4f4fb9 100644 --- a/setup.py +++ b/setup.py @@ -38,8 +38,6 @@ 'Natural Language :: English', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python', - 'Programming Language :: Python :: 2.6', - 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6',