From 6829962ad61f68e38b0b42d797c0b506f16ba053 Mon Sep 17 00:00:00 2001 From: Cameron Yick Date: Sun, 22 Oct 2017 19:54:14 -0400 Subject: [PATCH] Version Bump and Module Documentation --- AUTHORS.rst | 1 + HISTORY.rst | 6 ++++++ README.rst | 14 ++++++++++---- tiingo/__version__.py | 2 +- 4 files changed, 18 insertions(+), 5 deletions(-) diff --git a/AUTHORS.rst b/AUTHORS.rst index 59662ec..1a481a0 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -11,3 +11,4 @@ Contributors ------------ * Dmitry Budaev +* Bharat Kalluri diff --git a/HISTORY.rst b/HISTORY.rst index 2b617f5..47eb4de 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,12 @@ History ======= +0.4.0 (2017-10-22) +------------------ + +* Make tests run in 1/10th the time with ``vcr.py`` (@condemil #32) +* Add support for returning python objects instead of dictionaries (@BharatKalluri #33) + 0.3.0 (2017-09-17) ------------------ diff --git a/README.rst b/README.rst index 3d84db2..6fb886e 100644 --- a/README.rst +++ b/README.rst @@ -97,11 +97,17 @@ Features * Easy programmatic access to Tiingo API * Reuse requests session across API calls for better performance -* Coming soon: - * Client-side validation of tickers - * Data validation of returned responses - * Case insensitivity for ticker names +* On most methods, pass in `fmt="object"` as a keyword to have your responses come back as `NamedTuples`, which should have a lower memory impact than regular Python dictionaries. +Roadmap: +-------- + +* Client-side validation of tickers +* Data validation of returned responses +* Case insensitivity for ticker names +* More documentation / code examples + +Feel free to file a PR that implements any of the above items. Credits --------- diff --git a/tiingo/__version__.py b/tiingo/__version__.py index 32aa532..0301595 100644 --- a/tiingo/__version__.py +++ b/tiingo/__version__.py @@ -1,2 +1,2 @@ # -*- coding: utf-8 -*- -__version__ = '0.3.2' +__version__ = '0.4.0'