Skip to content

Commit

Permalink
bump version to v0.7, update changelog, remove python 2 doc strings f…
Browse files Browse the repository at this point in the history
…rom setup.py
  • Loading branch information
sckott committed Nov 8, 2019
1 parent 3dbb398 commit 5021974
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
8 changes: 8 additions & 0 deletions Changelog.rst
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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/*
2 changes: 1 addition & 1 deletion habanero/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
'''

__title__ = 'habanero'
__version__ = '0.6.2.3'
__version__ = '0.7.0'
__author__ = 'Scott Chamberlain'
__license__ = 'MIT'

Expand Down
2 changes: 0 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 5021974

Please sign in to comment.