File tree Expand file tree Collapse file tree 3 files changed +62
-0
lines changed Expand file tree Collapse file tree 3 files changed +62
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ Contents:
1414.. toctree ::
1515 :maxdepth: 2
1616
17+ whatsnew
1718 remote_data.rst
1819
1920
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 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`)
You can’t perform that action at this time.
0 commit comments