Skip to content

Commit df2fb49

Browse files
committed
DOC: add whatsnew / release for 0.14.1
1 parent da0f7ae commit df2fb49

File tree

4 files changed

+86
-1
lines changed

4 files changed

+86
-1
lines changed

doc/source/release.rst

Lines changed: 16 additions & 0 deletions
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.14.1
49+
-------------
50+
51+
**Release date:** (????)
52+
53+
This is a minor release from 0.14.0 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.14.1 Whatsnew <whatsnew_0141>` 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.14.1.
60+
61+
Thanks
62+
~~~~~~
63+
4864
pandas 0.14.0
4965
-------------
5066

doc/source/v0.14.1.txt

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
.. _whatsnew_0141:
2+
3+
v0.14.1 (???)
4+
-------------
5+
6+
This is a minor release from 0.14.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:`Other Enhancements <whatsnew_0141.enhancements>`
13+
14+
- :ref:`API Changes <whatsnew_0141.api>`
15+
16+
- :ref:`Performance Improvements <whatsnew_0141.performance>`
17+
18+
- :ref:`Prior Deprecations <whatsnew_0141.prior_deprecations>`
19+
20+
- :ref:`Deprecations <whatsnew_0141.deprecations>`
21+
22+
- :ref:`Known Issues <whatsnew_0141.knownissues>`
23+
24+
- :ref:`Bug Fixes <whatsnew_0141.bug_fixes>`
25+
26+
.. _whatsnew_0141.api:
27+
28+
API changes
29+
~~~~~~~~~~~
30+
31+
.. _whatsnew_0141.prior_deprecations:
32+
33+
Prior Version Deprecations/Changes
34+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
35+
36+
There are prior version deprecations that are taking effect as of 0.14.1.
37+
38+
.. _whatsnew_0141.deprecations:
39+
40+
Deprecations
41+
~~~~~~~~~~~~
42+
43+
.. _whatsnew_0141.knownissues:
44+
45+
Known Issues
46+
~~~~~~~~~~~~
47+
48+
.. _whatsnew_0141.enhancements:
49+
50+
Enhancements
51+
~~~~~~~~~~~~
52+
53+
.. _whatsnew_0141.performance:
54+
55+
Performance
56+
~~~~~~~~~~~
57+
58+
Experimental
59+
~~~~~~~~~~~~
60+
61+
There are no experimental changes in 0.14.1
62+
63+
.. _whatsnew_0141.bug_fixes:
64+
65+
Bug Fixes
66+
~~~~~~~~~
67+

doc/source/whatsnew.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ What's New
1717

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

20+
.. include:: v0.14.1.txt
21+
2022
.. include:: v0.14.0.txt
2123

2224
.. include:: v0.13.1.txt

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def build_extensions(self):
193193
MAJOR = 0
194194
MINOR = 14
195195
MICRO = 0
196-
ISRELEASED = True
196+
ISRELEASED = False
197197
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
198198
QUALIFIER = ''
199199

0 commit comments

Comments
 (0)