From 18833b7dbd39386a9b2b696ca359ef29dd8577c3 Mon Sep 17 00:00:00 2001 From: Cameron Yick Date: Sun, 11 Mar 2018 15:35:17 -0400 Subject: [PATCH 1/3] Minor Version Bump in Library and Docs --- docs/requirements.txt | 2 +- tiingo/__version__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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/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' From 96c0f060a3701e30dbfaffe78b33f8f0e1fcfb0d Mon Sep 17 00:00:00 2001 From: Cameron Yick Date: Sun, 11 Mar 2018 15:35:32 -0400 Subject: [PATCH 2/3] Update Changelog --- HISTORY.rst | 9 +++++++++ 1 file changed, 9 insertions(+) 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) ------------------ From 92a6da7e2b8dee66697029da75f4fc9ffd2594ea Mon Sep 17 00:00:00 2001 From: Cameron Yick Date: Sun, 11 Mar 2018 15:41:53 -0400 Subject: [PATCH 3/3] Make release process more secure with twine --- Makefile | 4 ++-- requirements_dev.txt | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) 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/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