Skip to content

Commit

Permalink
RLS: set released to True. v0.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
y-p committed Feb 3, 2014
1 parent a4376b5 commit d10a658
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
18 changes: 9 additions & 9 deletions doc/source/release.rst
Expand Up @@ -48,7 +48,7 @@ analysis / manipulation tool available in any language.
pandas 0.13.1
-------------

**Release date:** not-yet-released
**Release date:** (February 3, 2014)

New features
~~~~~~~~~~~~
Expand Down Expand Up @@ -118,7 +118,7 @@ Bug Fixes
- Bug in isnull handling ``NaT`` in an object array (:issue:`5443`)
- Bug in ``to_datetime`` when passed a ``np.nan`` or integer datelike and a format string (:issue:`5863`)
- Bug in groupby dtype conversion with datetimelike (:issue:`5869`)
- Regresssion in handling of empty Series as indexers to Series (:issue:`5877`)
- Regression in handling of empty Series as indexers to Series (:issue:`5877`)
- Bug in internal caching, related to (:issue:`5727`)
- Testing bug in reading json/msgpack from a non-filepath on windows under py3 (:issue:`5874`)
- Bug when assigning to .ix[tuple(...)] (:issue:`5896`)
Expand All @@ -143,7 +143,7 @@ Bug Fixes
- Fixed bug with ``pd.concat`` losing dtype information if all inputs are empty (:issue:`5742`)
- Recent changes in IPython cause warnings to be emitted when using previous versions
of pandas in QTConsole, now fixed. If you're using an older version and
need to supress the warnings, see (:issue:`5922`).
need to suppress the warnings, see (:issue:`5922`).
- Bug in merging ``timedelta`` dtypes (:issue:`5695`)
- Bug in plotting.scatter_matrix function. Wrong alignment among diagonal
and off-diagonal plots, see (:issue:`5497`).
Expand All @@ -167,16 +167,16 @@ Bug Fixes
- Bug in ``DataFrame.apply`` when using mixed datelike reductions (:issue:`6125`)
- Bug in ``DataFrame.append`` when appending a row with different columns (:issue:`6129`)
- Bug in DataFrame construction with recarray and non-ns datetime dtype (:issue:`6140`)
- Bug in ``.loc`` setitem indexing with a datafrme on rhs, multiple item setting, and
- Bug in ``.loc`` setitem indexing with a dataframe on rhs, multiple item setting, and
a datetimelike (:issue:`6152`)
- Fixed a bug in ``query``/``eval`` during lexicographic string comparisons (:issue:`6155`).
- Fixed a bug in ``query`` where the index of a single-element ``Series`` was
being thrown away (:issue:`6148`).
- Bug in ``HDFStore`` on appending a dataframe with multi-indexed columns to
an existing table (:issue:`6167`)
- Consistency with dtypes in setting an empty DataFrame (:issue:`6171`)
- Bug in selecting on a multi-index ``HDFStore`` even in the prescence of under
specificed column spec (:issue:`6169`)
- Bug in selecting on a multi-index ``HDFStore`` even in the presence of under
specified column spec (:issue:`6169`)
- Bug in ``nanops.var`` with ``ddof=1`` and 1 elements would sometimes return ``inf``
rather than ``nan`` on some platforms (:issue:`6136`)
- Bug in Series and DataFrame bar plots ignoring the ``use_index`` keyword (:issue:`6209`)
Expand All @@ -193,7 +193,7 @@ New features
- ``plot(kind='kde')`` now accepts the optional parameters ``bw_method`` and
``ind``, passed to scipy.stats.gaussian_kde() (for scipy >= 0.11.0) to set
the bandwidth, and to gkde.evaluate() to specify the indicies at which it
is evaluated, respecttively. See scipy docs. (:issue:`4298`)
is evaluated, respectively. See scipy docs. (:issue:`4298`)
- Added ``isin`` method to DataFrame (:issue:`4211`)
- ``df.to_clipboard()`` learned a new ``excel`` keyword that let's you
paste df data directly into excel (enabled by default). (:issue:`5070`).
Expand Down Expand Up @@ -249,7 +249,7 @@ Improvements to existing features
- Added a more informative error message when plot arguments contain
overlapping color and style arguments (:issue:`4402`)
- Significant table writing performance improvements in ``HDFStore``
- JSON date serialisation now performed in low-level C code.
- JSON date serialization now performed in low-level C code.
- JSON support for encoding datetime.time
- Expanded JSON docs, more info about orient options and the use of the numpy
param when decoding.
Expand Down Expand Up @@ -278,7 +278,7 @@ Improvements to existing features
- Better/cleaned up exceptions in core/common, io/excel and core/format
(:issue:`4721`, :issue:`3954`), as well as cleaned up test cases in
tests/test_frame, tests/test_multilevel (:issue:`4732`).
- Performance improvement of timesesies plotting with PeriodIndex and added
- Performance improvement of timeseries plotting with PeriodIndex and added
test to vbench (:issue:`4705` and :issue:`4722`)
- Add ``axis`` and ``level`` keywords to ``where``, so that the ``other``
argument can now be an alignable pandas object.
Expand Down
2 changes: 1 addition & 1 deletion doc/source/v0.13.1.txt
@@ -1,6 +1,6 @@
.. _whatsnew_0131:

v0.13.1 (February ???)
v0.13.1 (February 3, 2014)
----------------------

This is a minor release from 0.13.0 and includes a small number of API changes, several new features,
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -190,8 +190,8 @@ def build_extensions(self):

MAJOR = 0
MINOR = 13
MICRO = 0
ISRELEASED = False
MICRO = 1
ISRELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
QUALIFIER = ''

Expand Down

0 comments on commit d10a658

Please sign in to comment.