Skip to content

Commit 54d3fce

Browse files
Merge pull request #272 from davidastephens/rel_030
REL: Release 0.3.0
2 parents 7b5bc4a + 425c4a4 commit 54d3fce

File tree

6 files changed

+51
-75
lines changed

6 files changed

+51
-75
lines changed

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ or
5050
Usage
5151
-----
5252

53-
Starting in 0.19.0, pandas will no longer support ``pandas.io.data`` or ``pandas.io.wb``, so
53+
Starting in 0.19.0, pandas no longer supports ``pandas.io.data`` or ``pandas.io.wb``, so
5454
you must replace your imports from ``pandas.io`` with those from ``pandas_datareader``:
5555

5656
.. code-block:: python

docs/source/whatsnew.rst

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ What's New
1818

1919
These are new features and improvements of note in each release.
2020

21-
.. include:: whatsnew/v0.2.3.txt
22-
.. include:: whatsnew/v0.2.2.txt
21+
.. include:: whatsnew/v0.3.0.txt
2322
.. include:: whatsnew/v0.2.1.txt
2423
.. include:: whatsnew/v0.2.0.txt

docs/source/whatsnew/v0.2.2.txt

-33
This file was deleted.

docs/source/whatsnew/v0.2.3.txt

-38
This file was deleted.

docs/source/whatsnew/v0.3.0.txt

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
.. _whatsnew_030:
2+
3+
v0.3.0 (January XX, 2017)
4+
----------------------------
5+
6+
This is a major release from 0.2.1 and includes new features and a number of bug fixes.
7+
8+
9+
Highlights include:
10+
11+
12+
.. contents:: What's new in v0.3.0
13+
:local:
14+
:backlinks: none
15+
16+
.. _whatsnew_030.enhancements:
17+
18+
New features
19+
~~~~~~~~~~~~
20+
21+
- ``DataReader`` now supports dividend only pulls from Yahoo! Finance, see :ref:`here<remote_data.yahoo>` (:issue:`138`).
22+
- ``DataReader`` now supports downloading mutual fund prices from the Thrift Savings Plan, see :ref:`here<remote_data.tsp>` (:issue:`157`).
23+
- ``DataReader`` now supports Google options data source, see :ref:`here<remote_data.google_options>` (:issue:`148`).
24+
- ``DataReader`` now supports Google quotes, see :ref:`here<remote_data.google_quotes>` (:issue:`188`).
25+
- ``DataReader`` now supports Enigma dataset. see :ref:`here<remote_data.enigma>` (:issue:`245`).
26+
- ``DataReader`` now supports downloading a full list of NASDAQ listed symbols. see :ref:`here<remote_data.nasdaq_symbols>` (:issue:`254`).
27+
28+
Other enhancements
29+
^^^^^^^^^^^^^^^^^^
30+
31+
- Eurostat reader now supports larger data returned from API via zip format. (:issue:`205`)
32+
- Added support for Python 3.6.
33+
- Added support for pandas 19.2
34+
35+
36+
.. _whatsnew_030.api_breaking:
37+
38+
Backwards incompatible API changes
39+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
40+
41+
.. _whatsnew_030.bug_fixes:
42+
43+
Bug Fixes
44+
~~~~~~~~~
45+
46+
- Fixed bug that caused ``DataReader`` to fail if company name has a comma. (:issue:`85`).
47+
- Fixed bug in ``YahooOptions`` caused as a result of change in yahoo website format. (:issue:`244`).
48+

pandas_datareader/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = version = '0.2.2'
1+
__version__ = version = '0.3.0'
22

33
from .data import (get_components_yahoo, get_data_famafrench, get_data_google, get_data_yahoo, get_data_enigma, # noqa
44
get_data_yahoo_actions, get_quote_google, get_quote_yahoo, DataReader, Options) # noqa

0 commit comments

Comments
 (0)