Skip to content

Commit bbc041f

Browse files
committed
DOC: release notes, what's new, change dev version to 0.7.1
1 parent a55ded2 commit bbc041f

File tree

4 files changed

+41
-4
lines changed

4 files changed

+41
-4
lines changed

RELEASE.rst

+8-2
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,17 @@ pandas 0.7.1
3535
dataframe as tuples (#818)
3636
- Add ability to pass fill_value and method to DataFrame and Series align
3737
method (#806, #807)
38-
- Add fill_value option to reindex (#784)
38+
- Add fill_value option to reindex, align methods (#784)
3939
- Enable concat to produce DataFrame from Series (#787)
4040
- 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
4144

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)
4349

4450
**Bug fixes**
4551

doc/source/whatsnew.rst

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ What's New
1616

1717
These are new features and improvements of note in each release.
1818

19+
.. include:: whatsnew/v0.7.1.txt
20+
1921
.. include:: whatsnew/v0.7.0.txt
2022

2123
.. include:: whatsnew/v0.6.1.txt

doc/source/whatsnew/v0.7.1.txt

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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)

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,8 @@
163163
]
164164

165165
MAJOR = 0
166-
MINOR = 8
167-
MICRO = 0
166+
MINOR = 7
167+
MICRO = 1
168168
ISRELEASED = False
169169
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
170170
QUALIFIER = ''

0 commit comments

Comments
 (0)