Skip to content

REL: Release 0.3.0 #272

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 14, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions docs/source/whatsnew.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
33 changes: 0 additions & 33 deletions docs/source/whatsnew/v0.2.2.txt

This file was deleted.

38 changes: 0 additions & 38 deletions docs/source/whatsnew/v0.2.3.txt

This file was deleted.

48 changes: 48 additions & 0 deletions docs/source/whatsnew/v0.3.0.txt
Original file line number Diff line number Diff line change
@@ -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<remote_data.yahoo>` (:issue:`138`).
- ``DataReader`` now supports downloading mutual fund prices from the Thrift Savings Plan, see :ref:`here<remote_data.tsp>` (:issue:`157`).
- ``DataReader`` now supports Google options data source, see :ref:`here<remote_data.google_options>` (:issue:`148`).
- ``DataReader`` now supports Google quotes, see :ref:`here<remote_data.google_quotes>` (:issue:`188`).
- ``DataReader`` now supports Enigma dataset. see :ref:`here<remote_data.enigma>` (:issue:`245`).
- ``DataReader`` now supports downloading a full list of NASDAQ listed symbols. see :ref:`here<remote_data.nasdaq_symbols>` (: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`).

2 changes: 1 addition & 1 deletion pandas_datareader/__init__.py
Original file line number Diff line number Diff line change
@@ -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