Skip to content

Commit 5bb5025

Browse files
committed
DOC: initial setup for v0.16.0
1 parent 18ea1d8 commit 5bb5025

File tree

4 files changed

+69
-1
lines changed

4 files changed

+69
-1
lines changed

doc/source/release.rst

+16
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,22 @@ analysis / manipulation tool available in any language.
4545
* Binary installers on PyPI: http://pypi.python.org/pypi/pandas
4646
* Documentation: http://pandas.pydata.org
4747

48+
pandas 0.16.0
49+
-------------
50+
51+
**Release date:** (February ??, 2015)
52+
53+
This is a major release from 0.15.2 and includes a number of API changes, several new features, enhancements, and
54+
performance improvements along with a large number of bug fixes.
55+
56+
Highlights include:
57+
58+
See the :ref:`v0.16.0 Whatsnew <whatsnew_0160>` overview or the issue tracker on GitHub for an extensive list
59+
of all API changes, enhancements and bugs that have been fixed in 0.16.0.
60+
61+
Thanks
62+
~~~~~~
63+
4864
pandas 0.15.2
4965
-------------
5066

doc/source/whatsnew.rst

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

1919
These are new features and improvements of note in each release.
2020

21+
.. include:: whatsnew/v0.16.0.txt
22+
2123
.. include:: whatsnew/v0.15.2.txt
2224

2325
.. include:: whatsnew/v0.15.1.txt

doc/source/whatsnew/v0.16.0.txt

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
.. _whatsnew_0160:
2+
3+
v0.16.0 (February ??, 2015)
4+
---------------------------
5+
6+
This is a major release from 0.15.2 and includes a small number of API changes, several new features,
7+
enhancements, and performance improvements along with a large number of bug fixes. We recommend that all
8+
users upgrade to this version.
9+
10+
- Highlights include:
11+
12+
- Check the :ref:`API Changes <whatsnew_0160.api>` and :ref:`deprecations <whatsnew_0160.deprecations>` before updating
13+
14+
- :ref:`Other Enhancements <whatsnew_0160.enhancements>`
15+
16+
- :ref:`Performance Improvements <whatsnew_0160.performance>`
17+
18+
- :ref:`Bug Fixes <whatsnew_0160.bug_fixes>`
19+
20+
New features
21+
~~~~~~~~~~~~
22+
23+
.. _whatsnew_0160.api:
24+
25+
Backwards incompatible API changes
26+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
27+
28+
.. _whatsnew_0160.api_breaking:
29+
30+
Deprecations
31+
~~~~~~~~~~~~
32+
33+
.. _whatsnew_0160.deprecations:
34+
35+
36+
Enhancements
37+
~~~~~~~~~~~~
38+
39+
.. _whatsnew_0160.enhancements:
40+
41+
Performance
42+
~~~~~~~~~~~
43+
44+
.. _whatsnew_0160.performance:
45+
46+
47+
Bug Fixes
48+
~~~~~~~~~
49+
50+
.. _whatsnew_0160.bug_fixes:

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def build_extensions(self):
189189
MAJOR = 0
190190
MINOR = 15
191191
MICRO = 2
192-
ISRELEASED = True
192+
ISRELEASED = False
193193
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
194194
QUALIFIER = ''
195195

0 commit comments

Comments
 (0)