File tree 4 files changed +41
-4
lines changed
4 files changed +41
-4
lines changed Original file line number Diff line number Diff line change @@ -35,11 +35,17 @@ pandas 0.7.1
35
35
dataframe as tuples (#818)
36
36
- Add ability to pass fill_value and method to DataFrame and Series align
37
37
method (#806, #807)
38
- - Add fill_value option to reindex (#784)
38
+ - Add fill_value option to reindex, align methods (#784)
39
39
- Enable concat to produce DataFrame from Series (#787)
40
40
- Add ``between `` method to Series (#802)
41
+ - Add HTML representation hook to DataFrame for the IPython HTML notebook
42
+ (#773)
43
+ - Support for reading Excel 2007 XML documents using openpyxl
41
44
42
- **API Changes **
45
+ **Improvements to existing features **
46
+
47
+ - Improve performance and memory usage of fillna on DataFrame
48
+ - Can concatenate a list of Series along axis=1 to obtain a DataFrame (#787)
43
49
44
50
**Bug fixes **
45
51
Original file line number Diff line number Diff line change @@ -16,6 +16,8 @@ What's New
16
16
17
17
These are new features and improvements of note in each release.
18
18
19
+ .. include :: whatsnew/v0.7.1.txt
20
+
19
21
.. include :: whatsnew/v0.7.0.txt
20
22
21
23
.. include :: whatsnew/v0.6.1.txt
Original file line number Diff line number Diff line change
1
+ .. _whatsnew_0701:
2
+
3
+ v.0.7.1 (February 29, 2012)
4
+ ---------------------------
5
+
6
+ This release includes a few new features and addresses over a dozen bugs in
7
+ 0.7.0.
8
+
9
+ New features
10
+ ~~~~~~~~~~~~
11
+
12
+ - Add ``to_clipboard`` function to pandas namespace for writing objects to
13
+ the system clipboard (#774)
14
+ - Add ``itertuples`` method to DataFrame for iterating through the rows of a
15
+ dataframe as tuples (#818)
16
+ - Add ability to pass fill_value and method to DataFrame and Series align
17
+ method (#806, #807)
18
+ - Add fill_value option to reindex, align methods (#784)
19
+ - Enable concat to produce DataFrame from Series (#787)
20
+ - Add ``between`` method to Series (#802)
21
+ - Add HTML representation hook to DataFrame for the IPython HTML notebook
22
+ (#773)
23
+ - Support for reading Excel 2007 XML documents using openpyxl
24
+
25
+ Performance improvements
26
+ ~~~~~~~~~~~~~~~~~~~~~~~~
27
+
28
+ - Improve performance and memory usage of fillna on DataFrame
29
+ - Can concatenate a list of Series along axis=1 to obtain a DataFrame (#787)
Original file line number Diff line number Diff line change 163
163
]
164
164
165
165
MAJOR = 0
166
- MINOR = 8
167
- MICRO = 0
166
+ MINOR = 7
167
+ MICRO = 1
168
168
ISRELEASED = False
169
169
VERSION = '%d.%d.%d' % (MAJOR , MINOR , MICRO )
170
170
QUALIFIER = ''
You can’t perform that action at this time.
0 commit comments