Skip to content

Commit 4ea44a4

Browse files
committed
DOC: increase minor version number to 0.5
1 parent ba35f62 commit 4ea44a4

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

RELEASE.rst

+8-8
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,18 @@ Release Notes
55
This is the list of changes to pandas between each release. For full details,
66
see the commit logs at http://github.com/wesm/pandas
77

8-
pandas 0.4.4
8+
pandas 0.5.0
99
============
1010

1111
**Release date:** not yet released
1212

13+
**API Changes**
14+
15+
- `read_table`, `read_csv`, and `ExcelFile.parse` default arguments for
16+
`index_col` is now None. To use one or more of the columns as the resulting
17+
DataFrame's index, these must be explicitly specified now
18+
- Parsing functions no longer parse dates by default (GH #225)
19+
1320
**New features / modules**
1421

1522
- Added `DataFrame.align` method with standard join options
@@ -19,13 +26,6 @@ pandas 0.4.4
1926
- Added private `_get_duplicates` function to `Index` for identifying
2027
duplicate values more easily
2128

22-
**API Changes**
23-
24-
- `read_table`, `read_csv`, and `ExcelFile.parse` default arguments for
25-
`index_col` is now None. To use one or more of the columns as the resulting
26-
DataFrame's index, these must be explicitly specified now
27-
- Parsing functions no longer parse dates by default (GH #225)
28-
2929
**Improvements to existing features**
3030

3131
- File parsing functions like `read_csv` and `read_table` will explicitly

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@
128128
]
129129

130130
MAJOR = 0
131-
MINOR = 4
132-
MICRO = 4
131+
MINOR = 5
132+
MICRO = 0
133133
ISRELEASED = False
134134
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
135135

0 commit comments

Comments
 (0)