File tree 2 files changed +10
-10
lines changed
2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,18 @@ Release Notes
5
5
This is the list of changes to pandas between each release. For full details,
6
6
see the commit logs at http://github.com/wesm/pandas
7
7
8
- pandas 0.4.4
8
+ pandas 0.5.0
9
9
============
10
10
11
11
**Release date: ** not yet released
12
12
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
+
13
20
**New features / modules **
14
21
15
22
- Added `DataFrame.align ` method with standard join options
@@ -19,13 +26,6 @@ pandas 0.4.4
19
26
- Added private `_get_duplicates ` function to `Index ` for identifying
20
27
duplicate values more easily
21
28
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
-
29
29
**Improvements to existing features **
30
30
31
31
- File parsing functions like `read_csv ` and `read_table ` will explicitly
Original file line number Diff line number Diff line change 128
128
]
129
129
130
130
MAJOR = 0
131
- MINOR = 4
132
- MICRO = 4
131
+ MINOR = 5
132
+ MICRO = 0
133
133
ISRELEASED = False
134
134
VERSION = '%d.%d.%d' % (MAJOR , MINOR , MICRO )
135
135
You can’t perform that action at this time.
0 commit comments