diff --git a/README.rst b/README.rst index 3f25b3d6..0e2940ac 100644 --- a/README.rst +++ b/README.rst @@ -50,7 +50,7 @@ or Usage ----- -Starting in 0.19.0, pandas will no longer support ``pandas.io.data`` or ``pandas.io.wb``, so +Starting in 0.19.0, pandas no longer supports ``pandas.io.data`` or ``pandas.io.wb``, so you must replace your imports from ``pandas.io`` with those from ``pandas_datareader``: .. code-block:: python diff --git a/docs/source/whatsnew.rst b/docs/source/whatsnew.rst index daba3b1e..5f368c13 100644 --- a/docs/source/whatsnew.rst +++ b/docs/source/whatsnew.rst @@ -18,7 +18,6 @@ What's New These are new features and improvements of note in each release. -.. include:: whatsnew/v0.2.3.txt -.. include:: whatsnew/v0.2.2.txt +.. include:: whatsnew/v0.3.0.txt .. include:: whatsnew/v0.2.1.txt .. include:: whatsnew/v0.2.0.txt diff --git a/docs/source/whatsnew/v0.2.2.txt b/docs/source/whatsnew/v0.2.2.txt deleted file mode 100644 index 8f7ba9c3..00000000 --- a/docs/source/whatsnew/v0.2.2.txt +++ /dev/null @@ -1,33 +0,0 @@ -.. _whatsnew_022: - -v0.2.2 (XXX) ----------------------------- - -This is a minor release from 0.2.1 and includes new features and a number of bug fixes. - - -Highlights include: - - -.. contents:: What's new in v0.2.2 - :local: - :backlinks: none - -.. _whatsnew_022.enhancements: - -New features -~~~~~~~~~~~~ - -- ``DataReader`` now supports dividend only pulls from Yahoo! Finance, see :ref:`here` (:issue:`138`). -- ``DataReader`` now supports SEC EDGAR full (current quarter) index retrieval, see :ref:`here` (:issue:`143`). -- ``DataReader`` now supports SEC EDGAR daily (back to 7/1/1994) index retrieval, see :ref:`here` (:issue:`147`). - -.. _whatsnew_022.api_breaking: - -Backwards incompatible API changes -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -.. _whatsnew_022.bug_fixes: - -Bug Fixes -~~~~~~~~~ diff --git a/docs/source/whatsnew/v0.2.3.txt b/docs/source/whatsnew/v0.2.3.txt deleted file mode 100644 index 629c51a8..00000000 --- a/docs/source/whatsnew/v0.2.3.txt +++ /dev/null @@ -1,38 +0,0 @@ -.. _whatsnew_023: - -v0.2.3 (XXX) ----------------------------- - -This is a minor release from 0.2.2 and includes new features. - - -Highlights include: - - -.. contents:: What's new in v0.2.3 - :local: - :backlinks: none - -.. _whatsnew_023.enhancements: - -New features -~~~~~~~~~~~~ - -- ``DataReader`` now supports pulling data for the TSP. -- ``DataReader`` now supports Google options data source, see :ref:`here` (:issue:`148`). -- ``DataReader`` now supports Google quotes, see :ref:`here` (:pull:`188`). - -Other enhancements -^^^^^^^^^^^^^^^^^^ - -- Eurostat reader now supports larger data returned from API via zip format (:pull:`205`) - -.. _whatsnew_023.api_breaking: - -Backwards incompatible API changes -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -.. _whatsnew_023.bug_fixes: - -Bug Fixes -~~~~~~~~~ diff --git a/docs/source/whatsnew/v0.3.0.txt b/docs/source/whatsnew/v0.3.0.txt new file mode 100644 index 00000000..85289199 --- /dev/null +++ b/docs/source/whatsnew/v0.3.0.txt @@ -0,0 +1,48 @@ +.. _whatsnew_030: + +v0.3.0 (January XX, 2017) +---------------------------- + +This is a major release from 0.2.1 and includes new features and a number of bug fixes. + + +Highlights include: + + +.. contents:: What's new in v0.3.0 + :local: + :backlinks: none + +.. _whatsnew_030.enhancements: + +New features +~~~~~~~~~~~~ + +- ``DataReader`` now supports dividend only pulls from Yahoo! Finance, see :ref:`here` (:issue:`138`). +- ``DataReader`` now supports downloading mutual fund prices from the Thrift Savings Plan, see :ref:`here` (:issue:`157`). +- ``DataReader`` now supports Google options data source, see :ref:`here` (:issue:`148`). +- ``DataReader`` now supports Google quotes, see :ref:`here` (:issue:`188`). +- ``DataReader`` now supports Enigma dataset. see :ref:`here` (:issue:`245`). +- ``DataReader`` now supports downloading a full list of NASDAQ listed symbols. see :ref:`here` (:issue:`254`). + +Other enhancements +^^^^^^^^^^^^^^^^^^ + +- Eurostat reader now supports larger data returned from API via zip format. (:issue:`205`) +- Added support for Python 3.6. +- Added support for pandas 19.2 + + +.. _whatsnew_030.api_breaking: + +Backwards incompatible API changes +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +.. _whatsnew_030.bug_fixes: + +Bug Fixes +~~~~~~~~~ + +- Fixed bug that caused ``DataReader`` to fail if company name has a comma. (:issue:`85`). +- Fixed bug in ``YahooOptions`` caused as a result of change in yahoo website format. (:issue:`244`). + diff --git a/pandas_datareader/__init__.py b/pandas_datareader/__init__.py index 951c3dc1..469fc8d1 100644 --- a/pandas_datareader/__init__.py +++ b/pandas_datareader/__init__.py @@ -1,4 +1,4 @@ -__version__ = version = '0.2.2' +__version__ = version = '0.3.0' from .data import (get_components_yahoo, get_data_famafrench, get_data_google, get_data_yahoo, get_data_enigma, # noqa get_data_yahoo_actions, get_quote_google, get_quote_yahoo, DataReader, Options) # noqa