Skip to content

Commit ddf6bc1

Browse files
Merge pull request #95 from davidastephens/rel_020
DOC: Added whatsnew section and v0.2.0.txt
2 parents 5928b47 + f0cd113 commit ddf6bc1

File tree

4 files changed

+69
-0
lines changed

4 files changed

+69
-0
lines changed

docs/source/conf.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
extensions = [
3434
'sphinx.ext.autodoc',
3535
'sphinx.ext.intersphinx',
36+
'sphinx.ext.extlinks',
3637
'IPython.sphinxext.ipython_directive',
3738
'IPython.sphinxext.ipython_console_highlighting'
3839
]
@@ -267,3 +268,9 @@
267268

268269
# Example configuration for intersphinx: refer to the Python standard library.
269270
intersphinx_mapping = {'http://docs.python.org/': None}
271+
272+
273+
extlinks = {'issue': ('https://github.com/pydata/pandas-datareader/issues/%s',
274+
'GH'),
275+
'wiki': ('https://github.com/pydata/pandas-datareader/wiki/%s',
276+
'wiki ')}

docs/source/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Contents:
1414
.. toctree::
1515
:maxdepth: 2
1616

17+
whatsnew
1718
remote_data.rst
1819

1920

docs/source/whatsnew.rst

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
.. _whatsnew:
2+
3+
.. currentmodule:: pandas-datareader
4+
5+
.. ipython:: python
6+
:suppress:
7+
8+
import numpy as np
9+
from pandas import *
10+
import pandas as pd
11+
randn = np.random.randn
12+
np.set_printoptions(precision=4, suppress=True)
13+
options.display.max_rows = 15
14+
15+
**********
16+
What's New
17+
**********
18+
19+
These are new features and improvements of note in each release.
20+
21+
.. include:: whatsnew/v0.2.0.txt
22+

docs/source/whatsnew/v0.2.0.txt

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
.. _whatsnew_020:
2+
3+
v0.2.0 (September [x], 2015)
4+
----------------------------
5+
6+
This is a major release from 0.1.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.2.0
13+
:local:
14+
:backlinks: none
15+
16+
.. _whatsnew_020.enhancements:
17+
18+
New features
19+
~~~~~~~~~~~~
20+
- Added latitude and longitude to output of wb.get_countries (:issue:`47`).
21+
- Extended DataReader to fetch dividends and stock splits from Yahoo (:issue:`45`).
22+
- Added get_available_datasets to famafrench (:issue:`56`).
23+
24+
.. _whatsnew_0170.api:
25+
26+
Backwards incompatible API changes
27+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
28+
29+
.. _whatsnew_020.api_breaking:
30+
- Fama French indexes are not Pandas.PeriodIndex for annual and montly data, and
31+
pandas.DatetimeIndex otherwise (:issue:`56`).
32+
33+
.. _whatsnew_020.bug_fixes:
34+
35+
Bug Fixes
36+
~~~~~~~~~
37+
38+
- Update Fama-French URL (:issue:`53`)
39+
- Fixed bug where get_quote_yahoo would fail if a company name had a comma (:issue:`85`)

0 commit comments

Comments
 (0)