Skip to content

Commit

Permalink
added changelog for all versions up to now
Browse files Browse the repository at this point in the history
syntax tweaks all over the place to get a nice changelog
  • Loading branch information
gdementen committed Mar 28, 2017
1 parent 3c8d48a commit 6d03470
Show file tree
Hide file tree
Showing 37 changed files with 2,465 additions and 43 deletions.
276 changes: 272 additions & 4 deletions doc/source/changes.rst
Original file line number Diff line number Diff line change
@@ -1,17 +1,285 @@
.. highlight:: yaml

Change log
Change log
##########

Version 0.21
============

Released on 2017-03-28.

.. include:: ./changes/version_0_21.rst.inc


Version 0.20
============

.. include:: ./changes/version_0_20.rst.inc
Released on 2017-02-09.

.. include:: changes/version_0_20.rst.inc


Version 0.19
============

Released on 2017-01-19.

.. include:: changes/version_0_19.rst.inc


Version 0.18
============

Released on 2016-12-20.

.. include:: changes/version_0_18.rst.inc


Version 0.17
============

Released on 2016-11-29.

.. include:: changes/version_0_17.rst.inc


Version 0.16.1
==============

Released on 2016-11-04.

.. include:: changes/version_0_16_1.rst.inc


Version 0.16
============

Released on 2016-10-26.

.. include:: changes/version_0_16.rst.inc


Version 0.15
============

Released on 2016-09-23.

.. include:: changes/version_0_15.rst.inc


Version 0.14.1
==============

Released on 2016-08-12.

.. include:: changes/version_0_14_1.rst.inc


Version 0.14
============

Released on 2016-08-10.

.. include:: changes/version_0_14.rst.inc


Version 0.13
============

Released on 2016-07-11.

.. include:: changes/version_0_13.rst.inc


Version 0.12
============

Released on 2016-06-21.

.. include:: changes/version_0_12.rst.inc


Version 0.11.1
==============

Released on 2016-05-25.

.. include:: changes/version_0_11_1.rst.inc


Version 0.11
============

Released on 2016-05-25.

.. include:: changes/version_0_11.rst.inc


Version 0.10.1
==============

Released on 2016-03-25.

.. include:: changes/version_0_10_1.rst.inc


Version 0.10
============

Released on 2016-03-22.

.. include:: changes/version_0_10.rst.inc


Version 0.9.2
=============

Released on 2016-03-02.

.. include:: changes/version_0_9_2.rst.inc


Version 0.9.1
=============

Released on 2016-03-01.

.. include:: changes/version_0_9_1.rst.inc


Version 0.9
===========

Released on 2016-02-25.

.. include:: changes/version_0_9.rst.inc


Version 0.8.1
=============

Released on 2016-02-24.

.. include:: changes/version_0_8_1.rst.inc


Version 0.8
===========

Released on 2016-02-16.

.. include:: changes/version_0_8.rst.inc


Version 0.7.1
=============

Released on 2016-01-29.

.. include:: changes/version_0_7_1.rst.inc


Version 0.7
===========

Released on 2016-01-26.

.. include:: changes/version_0_7.rst.inc


Version 0.6.1
=============

Released on 2016-01-13.

.. include:: changes/version_0_6_1.rst.inc


Version 0.6
===========

Released on 2016-01-12.

.. include:: changes/version_0_6.rst.inc


Version 0.5
===========

Released on 2015-12-15.

.. include:: changes/version_0_5.rst.inc


Version 0.4
===========

Released on 2015-12-09.

.. include:: changes/version_0_4.rst.inc


Version 0.3
===========

Released on 2015-11-26.

.. include:: changes/version_0_3.rst.inc


Version 0.2.6
=============

Released on 2015-11-24.

.. include:: changes/version_0_2_6.rst.inc


Version 0.2.5
=============

Released on 2015-10-29.

.. include:: changes/version_0_2_5.rst.inc


Version 0.2.4
=============

Released on 2015-10-27.

.. include:: changes/version_0_2_4.rst.inc


Version 0.2.3
=============

Released on 2015-10-19.

.. include:: changes/version_0_2_3.rst.inc


Version 0.2.2
=============

Released on 2015-10-15.

.. include:: changes/version_0_2_2.rst.inc


Version 0.2.1
=============

Released on 2015-10-14.

.. include:: changes/version_0_2_1.rst.inc


Version 0.2
===========

Released on 2015-10-13.

.. include:: changes/version_0_2.rst.inc


Version 0.1
===========
Expand Down
31 changes: 31 additions & 0 deletions doc/source/changes/version_0_10.rst.inc
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
Core
----

* implemented dropna argument for to_csv, to_frame and to_series to avoid writing lines with either 'all' or 'any'
NA values.
* implemented read_sas. Needs pandas >= 0.18 (though it seems still buggy on some files).
* implemented experimental support for __getattr__ and __setattr__ on LArray. One can use arr.H instead of arr['M'].
It only works for single string labels though (not for slices or list of labels nor integer labels). Not sure it is a
good idea :).

* implemented Session +-`*`/
Eg. sess1 - sess2 will compute the difference on each array present in either session. If an array is present in one
session and not in the other, it is replaced by "NaN".
* added .nbytes property to LArray objects (to know how many bytes of memory the array uses)

* made sort_axis accept a tuple of axes
* raises an error on a.i[tuple_with_len_greater_than_array_ndim]
* slightly better support for axes with no name (no, still no complete support yet ;-))
* improved AxisCollection: implemented __delitem__(slice), __setitem__(list), __setitem__(slice)
* fixed exception on AxisCollection.index(invalid_index)
* better docstrings for a few functions
* misc code cleanups, refactoring & improved tests

Editor
------

* added .dirty property on ArrayEditorWidget
* fixed viewing arrays with "inf" (infinite)
* fixed a few edge cases for the ndigit detection code
* fixed colors in some cases in edit()
* made copy-paste of large regions faster in some cases
11 changes: 11 additions & 0 deletions doc/source/changes/version_0_10_1.rst.inc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
New features
------------

* A single change in this release: a much more powerful to_excel function which (by default) use Excel itself to write
files. Additional functionality include:

- write in an existing file without overwriting existing data/sheet/…
- write at a precise position
- view an array in a live Excel instance (a new OR an existing workbook)

See :meth:`~larray.LArray.to_excel` documentation for details.

0 comments on commit 6d03470

Please sign in to comment.