[python-hdf5storage] 11/12: Incremented version to 0.1.1

Ghislain Vaillant ghisvail-guest at moszumanska.debian.org
Mon Feb 29 08:24:49 UTC 2016


This is an automated email from the git hooks/post-receive script.

ghisvail-guest pushed a commit to annotated tag 0.1.1
in repository python-hdf5storage.

commit 286d6eae88f103c04c7de2cd3d31cc147c801027
Author: Freja Nordsiek <fnordsie at gmail.com>
Date:   Fri Mar 7 19:19:19 2014 -0500

    Incremented version to 0.1.1
---
 README.rst                 | 22 ++++++++++++++++++++++
 doc/source/development.rst |  3 ---
 hdf5storage/__init__.py    |  4 ++--
 setup.py                   |  2 +-
 4 files changed, 25 insertions(+), 6 deletions(-)

diff --git a/README.rst b/README.rst
index 3610e06..5095f47 100644
--- a/README.rst
+++ b/README.rst
@@ -190,3 +190,25 @@ canonical empty  0.1      ``np.float64([])``
 ===============  =======  =================================
 
 .. [8] Depends on whether there is a complex part or not.
+
+
+Versions
+========
+
+0.1.1. Bugfix release fixing the following bugs.
+       * ``str`` is now written like ``numpy.str_`` instead of
+         ``numpy.bytes_``.
+       * Complex numbers where the real or imaginary part are ``nan``
+         but the other part are not are now read correctly as opposed
+         to setting both parts to ``nan``.
+       * Fixed bugs in string conversions on Python 2 resulting from
+         ``str.decode()`` and ``unicode.encode()`` not taking the same
+         keyword arguments as in Python 3.
+       * MATLAB structure arrays can now be read without producing an
+         error on Python 2.
+       * ``numpy.str_`` now written as ``numpy.uint16`` on Python 2 if
+         the ``convert_numpy_str_to_utf16`` option is set and the
+         conversion can be done without using UTF-16 doublets, instead
+         of always writing them as ``numpy.uint32``.
+
+0.1. Initial version.
diff --git a/doc/source/development.rst b/doc/source/development.rst
index 70d8b22..0673445 100644
--- a/doc/source/development.rst
+++ b/doc/source/development.rst
@@ -73,9 +73,6 @@ fixed, etc.
 Standing Bugs
 -------------
 
-* Complex numbers where one of the parts (real or imaginary) is ``nan``
-  but the other part is not, are read from file as
-  ``(nan + nanj)``. See :py:func:`utilities.decode_complex`.
 * Structured ``np.ndarray`` with no elements, when
   :py:attr:`Options.structured_numpy_ndarray_as_struct` is set, are not
   written in a way that the dtypes for the fields can be restored when
diff --git a/hdf5storage/__init__.py b/hdf5storage/__init__.py
index 37c7efb..710cd99 100644
--- a/hdf5storage/__init__.py
+++ b/hdf5storage/__init__.py
@@ -28,11 +28,11 @@ This is the hdf5storage package, a Python package to read and write
 python data types to HDF5 (Heirarchal Data Format) files beyond just
 Numpy types.
 
-Version 0.1
+Version 0.1.1
 
 """
 
-__version__ = "0.1"
+__version__ = "0.1.1"
 
 import sys
 import os
diff --git a/setup.py b/setup.py
index 88b9167..a415c47 100644
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@ with open('README.rst') as file:
     long_description = file.read()
 
 setup(name='hdf5storage',
-      version='0.1',
+      version='0.1.1',
       description='Utilities to read/write Python types to/from HDF5 files, including MATLAB v7.3 MAT files.',
       long_description=long_description,
       author='Freja Nordsiek',

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/python-hdf5storage.git



More information about the debian-science-commits mailing list