diff --git a/HISTORY.rst b/HISTORY.rst index 47eb4de..150a835 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,15 @@ History ======= +0.5.0 (2018-03-11) +------------------ + +* Updated examples in docs for getting historical prices +* Add interfaces to obtain mutual fund and ETF tickers (@savagesmc #62) +* Raise explicit error when API key is missing (#44) +* Update development dependencies + + 0.4.0 (2017-10-22) ------------------ diff --git a/Makefile b/Makefile index 4bee6d1..3448ba7 100644 --- a/Makefile +++ b/Makefile @@ -75,8 +75,8 @@ servedocs: docs ## compile the docs watching for changes watchmedo shell-command -p '*.rst' -c '$(MAKE) -C docs html' -R -D . release: clean ## package and upload a release - python setup.py sdist upload - python setup.py bdist_wheel upload + python setup.py sdist bdist_wheel + twine upload dist/* dist: clean ## builds source and wheel package python setup.py sdist diff --git a/docs/requirements.txt b/docs/requirements.txt index 7c23b4f..ca0063a 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1 +1 @@ -tiingo==0.4.3 +tiingo==0.5.0 diff --git a/requirements_dev.txt b/requirements_dev.txt index cb408ee..b9e92c9 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -11,3 +11,4 @@ PyYAML==3.12 pytest==3.4.2 pytest-runner==4.0 vcrpy==1.11.1 +twine==1.10.0 diff --git a/tiingo/__version__.py b/tiingo/__version__.py index a7387dd..4543f94 100644 --- a/tiingo/__version__.py +++ b/tiingo/__version__.py @@ -1,2 +1,2 @@ # -*- coding: utf-8 -*- -__version__ = '0.4.3' +__version__ = '0.5.0'