diff --git a/CHANGELOG.md b/CHANGELOG.md index 0217c26..cfce502 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,10 @@ -## [2.0.0] - 2015-10-09 +## [1.1.2] - 2015-10-09 ### CHANGED -- `Image` objects now directly subclass Numpy arrays, so the `data` attribute is no longer needed (and has been removed). +- `Image` objects now directly subclass Numpy arrays. - Refactored code to permit parsing of different versions of ND2s, which will allow us to add support for NIS Elements 3.x. ### DEPRECATED +- The `data` attribute is no longer needed since `Image` is now a Numpy array. - The `image_sets` iterator will be removed in the near future. You should implement this yourself. ## [1.1.1] - 2015-09-02 diff --git a/setup.py b/setup.py index 7de9875..d5feeaa 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup -VERSION = "2.0.0" +VERSION = "1.1.2" setup( name="nd2reader",