Skip to content

Commit 778cfe4

Browse files
committed
DOC: start 0.15.1 cycle for docs
1 parent 017adea commit 778cfe4

File tree

4 files changed

+64
-1
lines changed

4 files changed

+64
-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.15.1
49+
-------------
50+
51+
**Release date:** (November ??, 2014)
52+
53+
This is a minor release from 0.15.0 and includes a small 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.15.1 Whatsnew <whatsnew_0151>` 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.15.1.
60+
61+
Thanks
62+
~~~~~~
63+
4864
pandas 0.15.0
4965
-------------
5066

doc/source/v0.15.1.txt

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
.. _whatsnew_0151:
2+
3+
v0.15.1 (November ??, 2014)
4+
-----------------------
5+
6+
This is a minor release from 0.15.0 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+
- :ref:`Enhancements <whatsnew_0151.enhancements>`
13+
- :ref:`API Changes <whatsnew_0151.api>`
14+
- :ref:`Performance Improvements <whatsnew_0151.performance>`
15+
- :ref:`Experimental Changes <whatsnew_0151.experimental>`
16+
- :ref:`Bug Fixes <whatsnew_0151.bug_fixes>`
17+
18+
.. _whatsnew_0151.api:
19+
20+
API changes
21+
~~~~~~~~~~~
22+
23+
24+
.. _whatsnew_0151.enhancements:
25+
26+
Enhancements
27+
~~~~~~~~~~~~
28+
29+
30+
.. _whatsnew_0151.performance:
31+
32+
Performance
33+
~~~~~~~~~~~
34+
35+
36+
.. _whatsnew_0151.experimental:
37+
38+
Experimental
39+
~~~~~~~~~~~~
40+
41+
42+
.. _whatsnew_0151.bug_fixes:
43+
44+
Bug Fixes
45+
~~~~~~~~~

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:: v0.15.1.txt
22+
2123
.. include:: v0.15.0.txt
2224

2325
.. include:: v0.14.1.txt

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 = 0
192-
ISRELEASED = True
192+
ISRELEASED = False
193193
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
194194
QUALIFIER = ''
195195

0 commit comments

Comments
 (0)