Version Bump and Module Documentation

This commit is contained in:
Cameron Yick
2017-10-22 19:54:14 -04:00
parent 6deb27f88f
commit 6829962ad6
4 changed files with 18 additions and 5 deletions

View File

@@ -11,3 +11,4 @@ Contributors
------------
* Dmitry Budaev <condemil@gmail.com>
* Bharat Kalluri

View File

@@ -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)
------------------

View File

@@ -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
---------

View File

@@ -1,2 +1,2 @@
# -*- coding: utf-8 -*-
__version__ = '0.3.2'
__version__ = '0.4.0'