diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7bfc7b9..f1ff682 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -7,13 +7,15 @@ Change log Added ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -#. `auto_detect_int`, a flag to switch off the autoatic conversion from float to - int +#. By default, `float` will be converted to `int` where fits. `auto_detect_int`, a flag to switch off the autoatic conversion from `float` to `int`. +#. 'library=pyexcel-xls' was added so as to inform pyexcel to use it instead of other libraries, in the situation where there are more than one plugin for a file type, e.g. xlsm + Updated ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -#. compatibility with pyexcel-io 0.2.0 +#. support the auto-import feature of pyexcel-io 0.2.0 +#. xlwt is now used for python 2 implementation while xlwt-future is used for python 3 0.1.0 - 17.01.2016 -------------------------------------------------------------------------------- diff --git a/README.rst b/README.rst index 6b3366e..3e7a1b8 100644 --- a/README.rst +++ b/README.rst @@ -36,14 +36,6 @@ or clone it and install it: Usage ================================================================================ -New feature --------------------------------------------------------------------------------- - - -1. Passing "streaming=True" to get_data, you will get the two dimensional array as a generator -2. Passing "data=your_generator" to save_data is acceptable too. - - As a standalone library --------------------------------------------------------------------------------